pub struct BeginDownloadByInodeResponse {
pub namespace_id: NamespaceId,
pub inode_id: InodeId,
pub revision_no: RevisionNo,
pub content_ref: ContentRef,
pub access: ObjectTransferAccess,
}Expand description
A short-lived capability to read one inode revision.
Fields§
§namespace_id: NamespaceIdNamespace that was read.
inode_id: InodeIdFile inode being read.
revision_no: RevisionNoRevision being read.
content_ref: ContentRefContent identity, size, and checksum.
access: ObjectTransferAccessShort-lived provider access without the raw object key.
Trait Implementations§
Source§impl Clone for BeginDownloadByInodeResponse
impl Clone for BeginDownloadByInodeResponse
Source§fn clone(&self) -> BeginDownloadByInodeResponse
fn clone(&self) -> BeginDownloadByInodeResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BeginDownloadByInodeResponse
impl Debug for BeginDownloadByInodeResponse
Source§impl<'de> Deserialize<'de> for BeginDownloadByInodeResponse
impl<'de> Deserialize<'de> for BeginDownloadByInodeResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BeginDownloadByInodeResponse
impl StructuralPartialEq for BeginDownloadByInodeResponse
Auto Trait Implementations§
impl Freeze for BeginDownloadByInodeResponse
impl RefUnwindSafe for BeginDownloadByInodeResponse
impl Send for BeginDownloadByInodeResponse
impl Sync for BeginDownloadByInodeResponse
impl Unpin for BeginDownloadByInodeResponse
impl UnsafeUnpin for BeginDownloadByInodeResponse
impl UnwindSafe for BeginDownloadByInodeResponse
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