pub struct GitLogPage {
pub log_id: u16,
pub update_id: u32,
pub status: u8,
pub flags: u8,
pub frontier: Vec<GitOid>,
pub records: Vec<u8>,
}Expand description
A decoded S2C_GIT_LOG_PAGE.
Fields§
§log_id: u16§update_id: u32Acknowledge with msg_git_log_ack to receive later updates.
status: u8§flags: u8§frontier: Vec<GitOid>§records: Vec<u8>Trait Implementations§
Source§impl Clone for GitLogPage
impl Clone for GitLogPage
Source§fn clone(&self) -> GitLogPage
fn clone(&self) -> GitLogPage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GitLogPage
impl Debug for GitLogPage
impl Eq for GitLogPage
Source§impl PartialEq for GitLogPage
impl PartialEq for GitLogPage
impl StructuralPartialEq for GitLogPage
Auto Trait Implementations§
impl Freeze for GitLogPage
impl RefUnwindSafe for GitLogPage
impl Send for GitLogPage
impl Sync for GitLogPage
impl Unpin for GitLogPage
impl UnsafeUnpin for GitLogPage
impl UnwindSafe for GitLogPage
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