pub struct LogQuery {
pub rev: Option<String>,
pub path: Option<String>,
pub since_utc: Option<String>,
pub until_utc: Option<String>,
pub author_contains: Option<String>,
pub skip: u32,
pub limit: u32,
pub topo_order: bool,
pub include_merges: bool,
}Expand description
Query for commit history.
Fields§
§rev: Option<String>§path: Option<String>§since_utc: Option<String>§until_utc: Option<String>§skip: u32§limit: u32§topo_order: bool§include_merges: boolImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogQuery
impl<'de> Deserialize<'de> for LogQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LogQuery
impl StructuralPartialEq for LogQuery
Auto Trait Implementations§
impl Freeze for LogQuery
impl RefUnwindSafe for LogQuery
impl Send for LogQuery
impl Sync for LogQuery
impl Unpin for LogQuery
impl UnwindSafe for LogQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more