pub struct ImportMeta {
pub external_id: Option<String>,
pub imported_from: String,
}
Expand description
Import information for this entity. null
if this entity is not imported.
Fields§
§external_id: Option<String>
Reference or identifier for this entity from the solution where it was imported from.
imported_from: String
Name of the platform where this entity was imported from.
Trait Implementations§
Source§impl Clone for ImportMeta
impl Clone for ImportMeta
Source§fn clone(&self) -> ImportMeta
fn clone(&self) -> ImportMeta
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 ImportMeta
impl Debug for ImportMeta
Source§impl<'de> Deserialize<'de> for ImportMeta
impl<'de> Deserialize<'de> for ImportMeta
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 ImportMeta
impl RefUnwindSafe for ImportMeta
impl Send for ImportMeta
impl Sync for ImportMeta
impl Unpin for ImportMeta
impl UnwindSafe for ImportMeta
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