pub struct DestinationResponse {
pub integration: Option<u32>,
pub target: Option<String>,
pub name: Option<String>,
pub destination_type: Option<String>,
pub id: Option<u32>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§integration: Option<u32>
§target: Option<String>
§name: Option<String>
§destination_type: Option<String>
§id: Option<u32>
§created_at: Option<String>
§updated_at: Option<String>
Trait Implementations§
Source§impl Clone for DestinationResponse
impl Clone for DestinationResponse
Source§fn clone(&self) -> DestinationResponse
fn clone(&self) -> DestinationResponse
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 DestinationResponse
impl Debug for DestinationResponse
Source§impl Default for DestinationResponse
impl Default for DestinationResponse
Source§fn default() -> DestinationResponse
fn default() -> DestinationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DestinationResponse
impl<'de> Deserialize<'de> for DestinationResponse
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
Auto Trait Implementations§
impl Freeze for DestinationResponse
impl RefUnwindSafe for DestinationResponse
impl Send for DestinationResponse
impl Sync for DestinationResponse
impl Unpin for DestinationResponse
impl UnwindSafe for DestinationResponse
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