pub struct EntityResponse {
pub id: String,
pub name: String,
pub entity_type: EntityType,
pub description: Option<String>,
pub created_by: String,
pub created_at: i64,
pub member_count: usize,
pub parent_org_id: Option<String>,
pub network_four_words: Option<String>,
pub is_local_only: bool,
}Expand description
Entity response data
Fields§
§id: String§name: String§entity_type: EntityType§description: Option<String>§created_by: String§created_at: i64§member_count: usize§parent_org_id: Option<String>§network_four_words: Option<String>§is_local_only: boolTrait Implementations§
Source§impl Clone for EntityResponse
impl Clone for EntityResponse
Source§fn clone(&self) -> EntityResponse
fn clone(&self) -> EntityResponse
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 EntityResponse
impl Debug for EntityResponse
Source§impl<'de> Deserialize<'de> for EntityResponse
impl<'de> Deserialize<'de> for EntityResponse
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 EntityResponse
impl RefUnwindSafe for EntityResponse
impl Send for EntityResponse
impl Sync for EntityResponse
impl Unpin for EntityResponse
impl UnwindSafe for EntityResponse
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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