pub struct ExternalEntityInfo {
pub id: Option<String>,
pub service: Option<ExternalSyncService>,
}Expand description
Information about an entity in an external system that is linked to a Linear entity. Provides the external ID, the service it belongs to, and optional service-specific metadata.
Fields§
§id: Option<String>The unique identifier of the entity in the external system (e.g., the Jira issue ID, GitHub issue node ID, or Slack message timestamp).
service: Option<ExternalSyncService>The external service that this entity belongs to (e.g., jira, github, slack).
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 UnsafeUnpin 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