pub struct LargeFile {
pub path: String,
pub content: Vec<u8>,
}Expand description
A large file to upload via LFS.
Fields§
§path: StringPath in the repository (e.g., “models/large-model.bin”).
content: Vec<u8>File content as bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LargeFile
impl RefUnwindSafe for LargeFile
impl Send for LargeFile
impl Sync for LargeFile
impl Unpin for LargeFile
impl UnwindSafe for LargeFile
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