Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Axosoft/git-rs
/ parse_log
Function
parse_log
gitrs_server/src/dispatch/git_command/log/parse.rs:118–124 ·
view source on GitHub ↗
(input: &str)
Source
from the content-addressed store, hash-verified
116
);
117
118
pub fn parse_log(input: &str) -> Result<Vec<LogEntry>, Error> {
119
let input = String::from(input);
120
121
parse_log_entries(&input)
122
.map_err(|_| Error::Process(Parsing))
123
.map(|(_, vec)| vec)
124
}
Callers
1
dispatch
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected