pub struct UploadContentResponse {
pub namespace_id: NamespaceId,
pub upload_id: UploadId,
pub content_ref: ContentRef,
}Expand description
Response after uploading bytes into a session.
Fields§
§namespace_id: NamespaceIdNamespace that owns the upload session.
upload_id: UploadIdSession into which the service staged these bytes.
content_ref: ContentRefDigest and byte length computed from the accepted body.
Trait Implementations§
Source§impl Clone for UploadContentResponse
impl Clone for UploadContentResponse
Source§fn clone(&self) -> UploadContentResponse
fn clone(&self) -> UploadContentResponse
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 UploadContentResponse
impl Debug for UploadContentResponse
Source§impl<'de> Deserialize<'de> for UploadContentResponse
impl<'de> Deserialize<'de> for UploadContentResponse
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 UploadContentResponse
Source§impl PartialEq for UploadContentResponse
impl PartialEq for UploadContentResponse
Source§impl Serialize for UploadContentResponse
impl Serialize for UploadContentResponse
impl StructuralPartialEq for UploadContentResponse
Auto Trait Implementations§
impl Freeze for UploadContentResponse
impl RefUnwindSafe for UploadContentResponse
impl Send for UploadContentResponse
impl Sync for UploadContentResponse
impl Unpin for UploadContentResponse
impl UnsafeUnpin for UploadContentResponse
impl UnwindSafe for UploadContentResponse
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