pub struct LfsObjectSpec {
pub oid: String,
pub size: u64,
}Expand description
Specification for an LFS object.
Fields§
§oid: StringSHA-256 hash of the file content.
size: u64Size of the file in bytes.
Trait Implementations§
Source§impl Clone for LfsObjectSpec
impl Clone for LfsObjectSpec
Source§fn clone(&self) -> LfsObjectSpec
fn clone(&self) -> LfsObjectSpec
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 LfsObjectSpec
impl Debug for LfsObjectSpec
Auto Trait Implementations§
impl Freeze for LfsObjectSpec
impl RefUnwindSafe for LfsObjectSpec
impl Send for LfsObjectSpec
impl Sync for LfsObjectSpec
impl Unpin for LfsObjectSpec
impl UnwindSafe for LfsObjectSpec
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