pub struct ConnectQueryOption {
pub metadata: Option<String>,
pub serialization: Option<String>,
pub dcInit: Option<DcInit>,
}
Expand description
Query parameter for POST /data/connections
Shows DataConnection parameters in SkyWay layer
Fields§
§metadata: Option<String>
Metadata associated with the connection, passed in by whoever initiated the connection.
serialization: Option<String>
Can be BINARY (default), BINARY_UTF8, JSON, or NONE.
dcInit: Option<DcInit>
Detail option for DataConnection
Trait Implementations§
Source§impl Clone for ConnectQueryOption
impl Clone for ConnectQueryOption
Source§fn clone(&self) -> ConnectQueryOption
fn clone(&self) -> ConnectQueryOption
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 ConnectQueryOption
impl Debug for ConnectQueryOption
Source§impl<'de> Deserialize<'de> for ConnectQueryOption
impl<'de> Deserialize<'de> for ConnectQueryOption
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 ConnectQueryOption
impl PartialEq for ConnectQueryOption
Source§impl Serialize for ConnectQueryOption
impl Serialize for ConnectQueryOption
impl StructuralPartialEq for ConnectQueryOption
Auto Trait Implementations§
impl Freeze for ConnectQueryOption
impl RefUnwindSafe for ConnectQueryOption
impl Send for ConnectQueryOption
impl Sync for ConnectQueryOption
impl Unpin for ConnectQueryOption
impl UnwindSafe for ConnectQueryOption
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