#[non_exhaustive]pub struct FetchBlobResponse {
pub sha: String,
pub content: String,
/* private fields */
}Expand description
Response message containing the content of a blob.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sha: StringThe SHA-1 hash of the blob.
content: StringThe content of the blob, encoded as base64.
Implementations§
Trait Implementations§
Source§impl Clone for FetchBlobResponse
impl Clone for FetchBlobResponse
Source§fn clone(&self) -> FetchBlobResponse
fn clone(&self) -> FetchBlobResponse
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 FetchBlobResponse
impl Debug for FetchBlobResponse
Source§impl Default for FetchBlobResponse
impl Default for FetchBlobResponse
Source§fn default() -> FetchBlobResponse
fn default() -> FetchBlobResponse
Returns the “default value” for a type. Read more
Source§impl Message for FetchBlobResponse
impl Message for FetchBlobResponse
Source§impl PartialEq for FetchBlobResponse
impl PartialEq for FetchBlobResponse
impl StructuralPartialEq for FetchBlobResponse
Auto Trait Implementations§
impl Freeze for FetchBlobResponse
impl RefUnwindSafe for FetchBlobResponse
impl Send for FetchBlobResponse
impl Sync for FetchBlobResponse
impl Unpin for FetchBlobResponse
impl UnwindSafe for FetchBlobResponse
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