[][src]Struct ena::sql::QueryIdentifier

pub struct QueryIdentifier {
    pub engine: Database,
    pub endpoint: YotsubaEndpoint,
    pub board: YotsubaBoard,
    pub schema: Option<String>,
    pub charset: Option<String>,
    pub hash_type: YotsubaHash,
    pub media_mode: YotsubaStatement,
}

New QueryIdentifier

Fields

engine: Databaseendpoint: YotsubaEndpointboard: YotsubaBoardschema: Option<String>charset: Option<String>hash_type: YotsubaHashmedia_mode: YotsubaStatement

Implementations

impl QueryIdentifier[src]

pub fn new(
    engine: Database,
    endpoint: YotsubaEndpoint,
    board: YotsubaBoard,
    schema: Option<String>,
    charset: Option<String>,
    hash_type: YotsubaHash,
    media_mode: YotsubaStatement
) -> Self
[src]

pub fn simple(
    engine: Database,
    endpoint: YotsubaEndpoint,
    board: YotsubaBoard
) -> Self
[src]

Trait Implementations

impl Clone for QueryIdentifier[src]

impl Debug for QueryIdentifier[src]

impl Eq for QueryIdentifier[src]

impl Hash for QueryIdentifier[src]

impl PartialEq<QueryIdentifier> for QueryIdentifier[src]

impl StructuralEq for QueryIdentifier[src]

impl StructuralPartialEq for QueryIdentifier[src]

Auto Trait Implementations

impl RefUnwindSafe for QueryIdentifier

impl Send for QueryIdentifier

impl Sync for QueryIdentifier

impl Unpin for QueryIdentifier

impl UnwindSafe for QueryIdentifier

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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<V, T> VZip<V> for T where
    V: MultiLane<T>,