Struct hypothesis::groups::Org[][src]

pub struct Org {
    pub id: String,
    pub default: bool,
    pub logo: Option<String>,
    pub name: String,
}

Information about an organization

Fields

id: String

Organization ID

default: bool

true if this organization is the default organization for the current authority

URI to logo image; may be null if no logo exists

name: String

Organization name

Trait Implementations

impl Clone for Org[src]

impl Debug for Org[src]

impl<'de> Deserialize<'de> for Org[src]

impl PartialEq<Org> for Org[src]

impl Serialize for Org[src]

impl StructuralPartialEq for Org[src]

Auto Trait Implementations

impl RefUnwindSafe for Org

impl Send for Org

impl Sync for Org

impl Unpin for Org

impl UnwindSafe for Org

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<D> OwoColorize for D

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.