pub struct ExternalEntityInfo {
pub id: Option<String>,
pub service: Option<ExternalSyncService>,
}Expand description
Information about an external entity.
Fields§
§id: Option<String>The id of the external entity.
service: Option<ExternalSyncService>The name of the service this entity is synced with.
Trait Implementations§
Source§impl Clone for ExternalEntityInfo
impl Clone for ExternalEntityInfo
Source§fn clone(&self) -> ExternalEntityInfo
fn clone(&self) -> ExternalEntityInfo
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 ExternalEntityInfo
impl Debug for ExternalEntityInfo
Source§impl Default for ExternalEntityInfo
impl Default for ExternalEntityInfo
Source§fn default() -> ExternalEntityInfo
fn default() -> ExternalEntityInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalEntityInfowhere
ExternalEntityInfo: Default,
impl<'de> Deserialize<'de> for ExternalEntityInfowhere
ExternalEntityInfo: Default,
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 GraphQLFields for ExternalEntityInfo
impl GraphQLFields for ExternalEntityInfo
Auto Trait Implementations§
impl Freeze for ExternalEntityInfo
impl RefUnwindSafe for ExternalEntityInfo
impl Send for ExternalEntityInfo
impl Sync for ExternalEntityInfo
impl Unpin for ExternalEntityInfo
impl UnwindSafe for ExternalEntityInfo
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