pub struct GetBlobInput {
pub blob_id: String,
pub repository_name: String,
}Expand description
Represents the input of a get blob operation.
Fields§
§blob_id: StringThe ID of the blob, which is its SHA-1 pointer.
repository_name: StringThe name of the repository that contains the blob.
Trait Implementations§
Source§impl Clone for GetBlobInput
impl Clone for GetBlobInput
Source§fn clone(&self) -> GetBlobInput
fn clone(&self) -> GetBlobInput
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 GetBlobInput
impl Debug for GetBlobInput
Source§impl Default for GetBlobInput
impl Default for GetBlobInput
Source§fn default() -> GetBlobInput
fn default() -> GetBlobInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetBlobInput
impl PartialEq for GetBlobInput
Source§impl Serialize for GetBlobInput
impl Serialize for GetBlobInput
impl StructuralPartialEq for GetBlobInput
Auto Trait Implementations§
impl Freeze for GetBlobInput
impl RefUnwindSafe for GetBlobInput
impl Send for GetBlobInput
impl Sync for GetBlobInput
impl Unpin for GetBlobInput
impl UnwindSafe for GetBlobInput
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