pub struct CreateFeedDocumentResult {
pub feed_document_id: String,
pub url: String,
pub encryption_details: Box<FeedDocumentEncryptionDetails>,
}Expand description
CreateFeedDocumentResult : Information required to encrypt and upload a feed document’s contents.
Fields
feed_document_id: StringThe identifier of the feed document.
url: StringThe presigned URL for uploading the feed contents. This URL expires after 5 minutes.
encryption_details: Box<FeedDocumentEncryptionDetails>Implementations
sourceimpl CreateFeedDocumentResult
impl CreateFeedDocumentResult
sourcepub fn new(
feed_document_id: String,
url: String,
encryption_details: FeedDocumentEncryptionDetails
) -> CreateFeedDocumentResult
pub fn new(
feed_document_id: String,
url: String,
encryption_details: FeedDocumentEncryptionDetails
) -> CreateFeedDocumentResult
Information required to encrypt and upload a feed document’s contents.
Trait Implementations
sourceimpl Clone for CreateFeedDocumentResult
impl Clone for CreateFeedDocumentResult
sourcefn clone(&self) -> CreateFeedDocumentResult
fn clone(&self) -> CreateFeedDocumentResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateFeedDocumentResult
impl Debug for CreateFeedDocumentResult
sourceimpl Default for CreateFeedDocumentResult
impl Default for CreateFeedDocumentResult
sourcefn default() -> CreateFeedDocumentResult
fn default() -> CreateFeedDocumentResult
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CreateFeedDocumentResult
impl<'de> Deserialize<'de> for CreateFeedDocumentResult
sourcefn 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
sourceimpl PartialEq<CreateFeedDocumentResult> for CreateFeedDocumentResult
impl PartialEq<CreateFeedDocumentResult> for CreateFeedDocumentResult
sourcefn eq(&self, other: &CreateFeedDocumentResult) -> bool
fn eq(&self, other: &CreateFeedDocumentResult) -> bool
sourceimpl Serialize for CreateFeedDocumentResult
impl Serialize for CreateFeedDocumentResult
impl StructuralPartialEq for CreateFeedDocumentResult
Auto Trait Implementations
impl RefUnwindSafe for CreateFeedDocumentResult
impl Send for CreateFeedDocumentResult
impl Sync for CreateFeedDocumentResult
impl Unpin for CreateFeedDocumentResult
impl UnwindSafe for CreateFeedDocumentResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more