[][src]Struct sn0int::autonoscope::Autonoscope

pub struct Autonoscope {
    pub id: i32,
    pub object: String,
    pub value: String,
    pub scoped: bool,
}

Fields

id: i32object: Stringvalue: Stringscoped: bool

Trait Implementations

impl Debug for Autonoscope[src]

impl HasTable for Autonoscope[src]

type Table = table

The table this type is associated with.

impl<'ident> Identifiable for &'ident Autonoscope[src]

type Id = &'ident i32

The type of this struct's identifier. Read more

impl PartialEq<Autonoscope> for Autonoscope[src]

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for Autonoscope where
    (i32, String, String, bool): Queryable<__ST, __DB>, 
[src]

type Row = <(i32, String, String, bool) as Queryable<__ST, __DB>>::Row

The Rust type you'd like to map from. Read more

impl StructuralPartialEq for Autonoscope[src]

impl TryFrom<Autonoscope> for DomainRule[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Autonoscope> for IpRule[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Autonoscope> for UrlRule[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

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> From<T> for T[src]

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

impl<T> IntoSql for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,