pub struct GetObjectContext {
pub input_s3_url: String,
pub output_route: String,
pub output_token: String,
pub other: Map<String, Value>,
}Available on crate feature
s3 only.Expand description
GetObjectContext contains the input and output details
for connections to Amazon S3 and S3 Object Lambda
Fields§
§input_s3_url: String§output_route: String§output_token: String§other: Map<String, Value>Available on crate feature
catch-all-fields only.Catchall to catch any additional fields that were present but not explicitly defined by this struct.
Enabled with Cargo feature catch-all-fields.
If catch-all-fields is disabled, any additional fields that are present will be ignored.
Trait Implementations§
Source§impl Clone for GetObjectContext
impl Clone for GetObjectContext
Source§fn clone(&self) -> GetObjectContext
fn clone(&self) -> GetObjectContext
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 GetObjectContext
impl Debug for GetObjectContext
Source§impl Default for GetObjectContext
impl Default for GetObjectContext
Source§fn default() -> GetObjectContext
fn default() -> GetObjectContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetObjectContext
impl<'de> Deserialize<'de> for GetObjectContext
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
Source§impl PartialEq for GetObjectContext
impl PartialEq for GetObjectContext
Source§impl Serialize for GetObjectContext
impl Serialize for GetObjectContext
impl Eq for GetObjectContext
impl StructuralPartialEq for GetObjectContext
Auto Trait Implementations§
impl Freeze for GetObjectContext
impl RefUnwindSafe for GetObjectContext
impl Send for GetObjectContext
impl Sync for GetObjectContext
impl Unpin for GetObjectContext
impl UnwindSafe for GetObjectContext
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