pub struct PublicOrg {Show 13 fields
pub id: String,
pub name: String,
pub legal_name: Option<String>,
pub slug: String,
pub website: String,
pub logo: Option<String>,
pub brand_color: Option<String>,
pub stock_symbol: Option<String>,
pub twitter: Option<String>,
pub isin: Option<String>,
pub lei: Option<String>,
pub naics: Option<String>,
pub vat_number: Option<String>,
}Expand description
Public organization information
Fields§
§id: StringOrganization ID
name: StringOrganization name
legal_name: Option<String>Legal name if different from display name
slug: StringURL-friendly slug
website: StringOrganization website
logo: Option<String>Logo URL
brand_color: Option<String>Brand color in hex format
stock_symbol: Option<String>Stock ticker symbol
twitter: Option<String>Twitter handle
isin: Option<String>International Securities Identification Number
lei: Option<String>Legal Entity Identifier
naics: Option<String>North American Industry Classification System code
vat_number: Option<String>VAT registration number
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PublicOrg
impl<'de> Deserialize<'de> for PublicOrg
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 PublicOrg
impl RefUnwindSafe for PublicOrg
impl Send for PublicOrg
impl Sync for PublicOrg
impl Unpin for PublicOrg
impl UnwindSafe for PublicOrg
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