pub struct ForEachRefPeeledObject<'a> {
pub oid: ObjectId,
pub object_type: ObjectType,
pub object_body: Cow<'a, [u8]>,
pub object_size: usize,
pub object_disk_size: Option<u64>,
pub tree: Option<ObjectId>,
pub parents: Vec<ObjectId>,
pub message: Option<Cow<'a, [u8]>>,
pub author: Option<Cow<'a, [u8]>>,
pub committer: Option<Cow<'a, [u8]>>,
pub creator: Option<Cow<'a, [u8]>>,
}Fields§
§oid: ObjectId§object_type: ObjectType§object_body: Cow<'a, [u8]>§object_size: usize§object_disk_size: Option<u64>§tree: Option<ObjectId>§parents: Vec<ObjectId>§message: Option<Cow<'a, [u8]>>§committer: Option<Cow<'a, [u8]>>§creator: Option<Cow<'a, [u8]>>Auto Trait Implementations§
impl<'a> Freeze for ForEachRefPeeledObject<'a>
impl<'a> RefUnwindSafe for ForEachRefPeeledObject<'a>
impl<'a> Send for ForEachRefPeeledObject<'a>
impl<'a> Sync for ForEachRefPeeledObject<'a>
impl<'a> Unpin for ForEachRefPeeledObject<'a>
impl<'a> UnsafeUnpin for ForEachRefPeeledObject<'a>
impl<'a> UnwindSafe for ForEachRefPeeledObject<'a>
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