pub struct JSONOutput {
pub record_delimiter: Option<String>,
}Expand description
Specifies JSON as request's output serialization format.
Fields§
§record_delimiter: Option<String>The value used to separate individual records in the output. If no value is specified, Amazon S3 uses a newline character ('\n').
Trait Implementations§
Source§impl Clone for JSONOutput
impl Clone for JSONOutput
Source§fn clone(&self) -> JSONOutput
fn clone(&self) -> JSONOutput
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 JSONOutput
impl Debug for JSONOutput
Source§impl Default for JSONOutput
impl Default for JSONOutput
Source§fn default() -> JSONOutput
fn default() -> JSONOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for JSONOutput
impl PartialEq for JSONOutput
impl StructuralPartialEq for JSONOutput
Auto Trait Implementations§
impl Freeze for JSONOutput
impl RefUnwindSafe for JSONOutput
impl Send for JSONOutput
impl Sync for JSONOutput
impl Unpin for JSONOutput
impl UnwindSafe for JSONOutput
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