pub struct Entity {Show 13 fields
pub id: String,
pub slug: String,
pub display_name: String,
pub legal_name: Option<String>,
pub entity_type: EntityType,
pub description: Option<String>,
pub domains: Vec<String>,
pub is_verified: bool,
pub is_active: bool,
pub profile: HashMap<String, Value>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub verification_date: Option<DateTime<Utc>>,
}Expand description
LTFI-WSAP Entity
Fields§
§id: String§slug: String§display_name: String§legal_name: Option<String>§entity_type: EntityType§description: Option<String>§domains: Vec<String>§is_verified: bool§is_active: bool§profile: HashMap<String, Value>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§verification_date: Option<DateTime<Utc>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Entity
impl<'de> Deserialize<'de> for Entity
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 Entity
impl RefUnwindSafe for Entity
impl Send for Entity
impl Sync for Entity
impl Unpin for Entity
impl UnsafeUnpin for Entity
impl UnwindSafe for Entity
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