[][src]Struct polodb_bson::Array

pub struct Array(_);

Implementations

impl Array[src]

pub fn new() -> Array[src]

pub fn new_with_size(size: usize) -> Array[src]

pub fn iter(&self) -> Iter<'_>[src]

pub fn push(&mut self, elm: Value)[src]

pub fn len(&self) -> u32[src]

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

impl Array[src]

pub fn to_bytes(&self) -> BsonResult<Vec<u8>>[src]

pub fn from_bytes(bytes: &[u8]) -> BsonResult<Array>[src]

Trait Implementations

impl Clone for Array[src]

impl Debug for Array[src]

impl Default for Array[src]

impl From<Array> for Value[src]

impl Index<usize> for Array[src]

type Output = Value

The returned type after indexing.

impl IndexMut<usize> for Array[src]

Auto Trait Implementations

impl !RefUnwindSafe for Array

impl !Send for Array

impl !Sync for Array

impl Unpin for Array

impl !UnwindSafe for Array

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> 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.