pub struct OutputSerialization {
pub csv: Option<CSVOutput>,
pub json: Option<JSONOutput>,
}Expand description
Describes how results of the Select job are serialized.
Fields§
§csv: Option<CSVOutput>Describes the serialization of CSV-encoded Select results.
json: Option<JSONOutput>Specifies JSON as request's output serialization format.
Trait Implementations§
Source§impl Clone for OutputSerialization
impl Clone for OutputSerialization
Source§fn clone(&self) -> OutputSerialization
fn clone(&self) -> OutputSerialization
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 OutputSerialization
impl Debug for OutputSerialization
Source§impl Default for OutputSerialization
impl Default for OutputSerialization
Source§fn default() -> OutputSerialization
fn default() -> OutputSerialization
Returns the “default value” for a type. Read more
Source§impl<'xml> DeserializeContent<'xml> for OutputSerialization
Available on crate feature minio only.
impl<'xml> DeserializeContent<'xml> for OutputSerialization
Available on crate feature
minio only.Source§fn deserialize_content(d: &mut Deserializer<'xml>) -> DeResult<Self>
fn deserialize_content(d: &mut Deserializer<'xml>) -> DeResult<Self>
Deserializes the content of the data type Read more
Source§impl DtoExt for OutputSerialization
impl DtoExt for OutputSerialization
Source§fn ignore_empty_strings(&mut self)
fn ignore_empty_strings(&mut self)
Modifies all empty string fields from
Some("") to NoneSource§impl PartialEq for OutputSerialization
impl PartialEq for OutputSerialization
Source§fn eq(&self, other: &OutputSerialization) -> bool
fn eq(&self, other: &OutputSerialization) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl SerializeContent for OutputSerialization
Available on crate feature minio only.
impl SerializeContent for OutputSerialization
Available on crate feature
minio only.Source§fn serialize_content<W: Write>(&self, s: &mut Serializer<W>) -> SerResult
fn serialize_content<W: Write>(&self, s: &mut Serializer<W>) -> SerResult
Serializes the content of the data type Read more
impl StructuralPartialEq for OutputSerialization
Auto Trait Implementations§
impl Freeze for OutputSerialization
impl RefUnwindSafe for OutputSerialization
impl Send for OutputSerialization
impl Sync for OutputSerialization
impl Unpin for OutputSerialization
impl UnsafeUnpin for OutputSerialization
impl UnwindSafe for OutputSerialization
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