[][src]Struct leetcode_cli::cache::models::Tag

pub struct Tag {
    pub tag: String,
    pub refs: String,
}

Tag model

Fields

tag: Stringrefs: String

Trait Implementations

impl Clone for Tag[src]

impl Debug for Tag[src]

impl<'insert> Insertable<table> for Tag[src]

type Values = <(Option<Eq<tag, String>>, Option<Eq<refs, String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> Insertable<table> for &'insert Tag[src]

type Values = <(Option<Eq<tag, &'insert String>>, Option<Eq<refs, &'insert String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

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

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

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

impl Serialize for Tag[src]

impl<'insert> UndecoratedInsertRecord<table> for Tag[src]

Auto Trait Implementations

impl RefUnwindSafe for Tag

impl Send for Tag

impl Sync for Tag

impl Unpin for Tag

impl UnwindSafe for Tag

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

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

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 
[src]

impl<T> IntoSql for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

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