pub struct WildliveDataConnectorDefinition {
pub description: String,
pub expiry_date: Option<Option<String>>,
pub id: Uuid,
pub name: String,
pub priority: Option<Option<i32>>,
pub refresh_token: Option<Option<String>>,
pub type: Type,
pub user: Option<Option<String>>,
}Fields§
§description: String§expiry_date: Option<Option<String>>§id: Uuid§name: String§priority: Option<Option<i32>>§refresh_token: Option<Option<String>>A wrapper type that serializes to "" and can be deserialized from any string. If the inner value is "", it is considered unknown and as_option returns None. This is useful for secrets that should not be exposed in API responses, but can be set in API requests.
type: Type§user: Option<Option<String>>Implementations§
Trait Implementations§
Source§impl Clone for WildliveDataConnectorDefinition
impl Clone for WildliveDataConnectorDefinition
Source§fn clone(&self) -> WildliveDataConnectorDefinition
fn clone(&self) -> WildliveDataConnectorDefinition
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 Default for WildliveDataConnectorDefinition
impl Default for WildliveDataConnectorDefinition
Source§fn default() -> WildliveDataConnectorDefinition
fn default() -> WildliveDataConnectorDefinition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WildliveDataConnectorDefinition
impl<'de> Deserialize<'de> for WildliveDataConnectorDefinition
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 WildliveDataConnectorDefinition
impl PartialEq for WildliveDataConnectorDefinition
Source§fn eq(&self, other: &WildliveDataConnectorDefinition) -> bool
fn eq(&self, other: &WildliveDataConnectorDefinition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WildliveDataConnectorDefinition
Auto Trait Implementations§
impl Freeze for WildliveDataConnectorDefinition
impl RefUnwindSafe for WildliveDataConnectorDefinition
impl Send for WildliveDataConnectorDefinition
impl Sync for WildliveDataConnectorDefinition
impl Unpin for WildliveDataConnectorDefinition
impl UnsafeUnpin for WildliveDataConnectorDefinition
impl UnwindSafe for WildliveDataConnectorDefinition
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