[][src]Enum orientdb_client::common::protocol::messages::request::Request

pub enum Request {
    HandShake(HandShake),
    Connect(Connect),
    CreateDB(CreateDB),
    ExistDB(ExistDB),
    DropDB(DropDB),
    Open(Open),
    Query(Query),
    QueryNext(QueryNext),
    QueryClose(QueryClose),
    Close(Close),
}

Variants

HandShake(HandShake)Connect(Connect)CreateDB(CreateDB)ExistDB(ExistDB)DropDB(DropDB)Open(Open)Query(Query)QueryNext(QueryNext)QueryClose(QueryClose)Close(Close)

Methods

impl Request[src]

pub fn need_response(&self) -> bool[src]

Trait Implementations

impl From<HandShake> for Request[src]

impl From<Connect> for Request[src]

impl From<Open> for Request[src]

impl From<Query> for Request[src]

impl From<Close> for Request[src]

impl From<QueryNext> for Request[src]

impl From<QueryClose> for Request[src]

impl From<CreateDB> for Request[src]

impl From<ExistDB> for Request[src]

impl From<DropDB> for Request[src]

impl Debug for Request[src]

Auto Trait Implementations

impl Unpin for Request

impl Sync for Request

impl Send for Request

impl UnwindSafe for Request

impl RefUnwindSafe for Request

Blanket Implementations

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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