[][src]Struct orientdb_client::common::protocol::buffer::OBuffer

pub struct OBuffer { /* fields omitted */ }

Methods

impl OBuffer[src]

pub fn new() -> OBuffer[src]

pub fn as_slice(&self) -> &[u8][src]

pub fn put_i8(&mut self, n: i8) -> OrientResult<()>[src]

pub fn put_u8(&mut self, n: u8) -> OrientResult<()>[src]

pub fn put_i32(&mut self, n: i32) -> OrientResult<()>[src]

pub fn put_i16(&mut self, n: i16) -> OrientResult<()>[src]

pub fn put_slice(&mut self, src: &[u8]) -> OrientResult<()>[src]

pub fn write_str(&mut self, str: &str) -> OrientResult<()>[src]

pub fn write_slice(&mut self, bytes: &[u8]) -> OrientResult<()>[src]

pub fn write_bool(&mut self, boolean: bool) -> OrientResult<()>[src]

pub fn write_varint(&mut self, number: i64) -> OrientResult<()>[src]

pub fn write_string(&mut self, val: &str) -> OrientResult<()>[src]

Trait Implementations

impl Default for OBuffer[src]

Auto Trait Implementations

impl Send for OBuffer

impl Sync for OBuffer

impl Unpin for OBuffer

impl UnwindSafe for OBuffer

impl RefUnwindSafe for OBuffer

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

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

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