pub struct LfsFileRef {
pub oid: String,
pub size: u64,
}Expand description
An LFS file reference for creating commits.
Fields§
§oid: StringSHA-256 hash of the content.
size: u64Size in bytes.
Trait Implementations§
Source§impl Clone for LfsFileRef
impl Clone for LfsFileRef
Source§fn clone(&self) -> LfsFileRef
fn clone(&self) -> LfsFileRef
Returns a duplicate of the value. Read more
1.0.0 · 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 LfsFileRef
impl Debug for LfsFileRef
Auto Trait Implementations§
impl Freeze for LfsFileRef
impl RefUnwindSafe for LfsFileRef
impl Send for LfsFileRef
impl Sync for LfsFileRef
impl Unpin for LfsFileRef
impl UnwindSafe for LfsFileRef
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