pub struct OrgInfo {
pub id: String,
pub name: String,
pub api_url: Option<String>,
}Expand description
Organization info returned from login.
Fields§
§id: String§name: String§api_url: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for OrgInfo
impl<'de> Deserialize<'de> for OrgInfo
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 OrgInfo
impl RefUnwindSafe for OrgInfo
impl Send for OrgInfo
impl Sync for OrgInfo
impl Unpin for OrgInfo
impl UnsafeUnpin for OrgInfo
impl UnwindSafe for OrgInfo
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