[][src]Struct cpp_std::VectorOfSchar

#[repr(C)]
pub struct VectorOfSchar { /* fields omitted */ }

C++ class: std::vector<signed char, std::allocator<signed char>>.

Methods

impl VectorOfSchar[src]

pub unsafe fn assign_usize_schar(
    &mut self,
    n: usize,
    val: impl CastInto<Ref<c_schar>>
)
[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::assign(size_t __n, const signed char& __val).

pub unsafe fn assign_2_schar(
    &mut self,
    first: impl CastInto<Ptr<c_schar>>,
    last: impl CastInto<Ptr<c_schar>>
)
[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::assign(const signed char* first, const signed char* last).

pub unsafe fn at_mut(&mut self, n: usize) -> MutRef<c_schar>[src]

Calls C++ function: signed char& std::vector<signed char, std::allocator<signed char>>::at(size_t __n).

pub unsafe fn at(&self, n: usize) -> Ref<c_schar>[src]

Calls C++ function: const signed char& std::vector<signed char, std::allocator<signed char>>::at(size_t __n) const.

pub unsafe fn back_mut(&mut self) -> MutRef<c_schar>[src]

Calls C++ function: signed char& std::vector<signed char, std::allocator<signed char>>::back().

pub unsafe fn back(&self) -> Ref<c_schar>[src]

Calls C++ function: const signed char& std::vector<signed char, std::allocator<signed char>>::back() const.

pub unsafe fn capacity(&self) -> usize[src]

Calls C++ function: size_t std::vector<signed char, std::allocator<signed char>>::capacity() const.

pub unsafe fn clear(&mut self)[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::clear().

pub unsafe fn copy_from(
    &mut self,
    other: impl CastInto<Ref<VectorOfSchar>>
) -> MutRef<VectorOfSchar>
[src]

Calls C++ function: std::vector<signed char, std::allocator<signed char>>& std::vector<signed char, std::allocator<signed char>>::operator=(const std::vector<signed char, std::allocator<signed char>>& other).

pub unsafe fn data_mut(&mut self) -> MutPtr<c_schar>[src]

Calls C++ function: signed char* std::vector<signed char, std::allocator<signed char>>::data().

pub unsafe fn data(&self) -> Ptr<c_schar>[src]

Calls C++ function: const signed char* std::vector<signed char, std::allocator<signed char>>::data() const.

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

Calls C++ function: bool std::vector<signed char, std::allocator<signed char>>::empty() const.

pub unsafe fn front_mut(&mut self) -> MutRef<c_schar>[src]

Calls C++ function: signed char& std::vector<signed char, std::allocator<signed char>>::front().

pub unsafe fn front(&self) -> Ref<c_schar>[src]

Calls C++ function: const signed char& std::vector<signed char, std::allocator<signed char>>::front() const.

pub unsafe fn index_mut(&mut self, n: usize) -> MutRef<c_schar>[src]

Calls C++ function: signed char& std::vector<signed char, std::allocator<signed char>>::operator[](size_t __n).

pub unsafe fn index(&self, n: usize) -> Ref<c_schar>[src]

Calls C++ function: const signed char& std::vector<signed char, std::allocator<signed char>>::operator[](size_t __n) const.

pub unsafe fn max_size(&self) -> usize[src]

Calls C++ function: size_t std::vector<signed char, std::allocator<signed char>>::max_size() const.

pub unsafe fn new() -> CppBox<VectorOfSchar>[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector().

pub unsafe fn from_allocator_of_schar(
    a: impl CastInto<Ref<AllocatorOfSchar>>
) -> CppBox<VectorOfSchar>
[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(const std::allocator<signed char>& __a).

pub unsafe fn from_usize_allocator_of_schar(
    n: usize,
    a: impl CastInto<Ref<AllocatorOfSchar>>
) -> CppBox<VectorOfSchar>
[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(size_t __n, const std::allocator<signed char>& __a = …).

pub unsafe fn from_usize_schar_allocator_of_schar(
    n: usize,
    value: impl CastInto<Ref<c_schar>>,
    a: impl CastInto<Ref<AllocatorOfSchar>>
) -> CppBox<VectorOfSchar>
[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(size_t __n, const signed char& __value, const std::allocator<signed char>& __a = …).

pub unsafe fn from_vector_of_schar_allocator_of_schar(
    x: impl CastInto<Ref<VectorOfSchar>>,
    a: impl CastInto<Ref<AllocatorOfSchar>>
) -> CppBox<VectorOfSchar>
[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(const std::vector<signed char, std::allocator<signed char>>& __x, const std::allocator<signed char>& __a).

pub unsafe fn from_2_schar_allocator_of_schar(
    first: impl CastInto<Ptr<c_schar>>,
    last: impl CastInto<Ptr<c_schar>>,
    alloc: impl CastInto<Ref<AllocatorOfSchar>>
) -> CppBox<VectorOfSchar>
[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(const signed char* first, const signed char* last, std::allocator<signed char> alloc = …).

pub unsafe fn from_usize(n: usize) -> CppBox<VectorOfSchar>[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(size_t __n).

pub unsafe fn from_usize_schar(
    n: usize,
    value: impl CastInto<Ref<c_schar>>
) -> CppBox<VectorOfSchar>
[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(size_t __n, const signed char& __value).

pub unsafe fn from_2_schar(
    first: impl CastInto<Ptr<c_schar>>,
    last: impl CastInto<Ptr<c_schar>>
) -> CppBox<VectorOfSchar>
[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(const signed char* first, const signed char* last).

pub unsafe fn new_copy(
    other: impl CastInto<Ref<VectorOfSchar>>
) -> CppBox<VectorOfSchar>
[src]

Calls C++ function: [constructor] void std::vector<signed char, std::allocator<signed char>>::vector(const std::vector<signed char, std::allocator<signed char>>& other).

pub unsafe fn pop_back(&mut self)[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::pop_back().

pub unsafe fn push_back(&mut self, x: impl CastInto<Ref<c_schar>>)[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::push_back(const signed char& __x).

pub unsafe fn reserve(&mut self, n: usize)[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::reserve(size_t __n).

pub unsafe fn resize_1a(&mut self, new_size: usize)[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::resize(size_t __new_size).

pub unsafe fn resize_2a(
    &mut self,
    new_size: usize,
    x: impl CastInto<Ref<c_schar>>
)
[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::resize(size_t __new_size, const signed char& __x).

pub unsafe fn shrink_to_fit(&mut self)[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::shrink_to_fit().

pub unsafe fn size(&self) -> usize[src]

Calls C++ function: size_t std::vector<signed char, std::allocator<signed char>>::size() const.

pub unsafe fn swap(&mut self, x: impl CastInto<MutRef<VectorOfSchar>>)[src]

Calls C++ function: void std::vector<signed char, std::allocator<signed char>>::swap(std::vector<signed char, std::allocator<signed char>>& __x).

Trait Implementations

impl PartialEq<Ref<VectorOfSchar>> for VectorOfSchar[src]

fn eq(&self, y: &Ref<VectorOfSchar>) -> bool[src]

Calls C++ function: bool std::operator==(const std::vector<signed char, std::allocator<signed char>>& __x, const std::vector<signed char, std::allocator<signed char>>& __y).

impl Lt<Ref<VectorOfSchar>> for VectorOfSchar[src]

unsafe fn lt(&self, y: &Ref<VectorOfSchar>) -> bool[src]

Calls C++ function: bool std::operator<(const std::vector<signed char, std::allocator<signed char>>& __x, const std::vector<signed char, std::allocator<signed char>>& __y).

impl Le<Ref<VectorOfSchar>> for VectorOfSchar[src]

unsafe fn le(&self, y: &Ref<VectorOfSchar>) -> bool[src]

Calls C++ function: bool std::operator<=(const std::vector<signed char, std::allocator<signed char>>& __x, const std::vector<signed char, std::allocator<signed char>>& __y).

impl Gt<Ref<VectorOfSchar>> for VectorOfSchar[src]

unsafe fn gt(&self, y: &Ref<VectorOfSchar>) -> bool[src]

Calls C++ function: bool std::operator>(const std::vector<signed char, std::allocator<signed char>>& __x, const std::vector<signed char, std::allocator<signed char>>& __y).

impl Ge<Ref<VectorOfSchar>> for VectorOfSchar[src]

unsafe fn ge(&self, y: &Ref<VectorOfSchar>) -> bool[src]

Calls C++ function: bool std::operator>=(const std::vector<signed char, std::allocator<signed char>>& __x, const std::vector<signed char, std::allocator<signed char>>& __y).

impl CppDeletable for VectorOfSchar[src]

unsafe fn delete(&mut self)[src]

Calls C++ function: [destructor] void std::vector<signed char, std::allocator<signed char>>::~vector().

impl Data for VectorOfSchar[src]

type Output = Ptr<c_schar>

unsafe fn data(&self) -> Ptr<c_schar>[src]

Calls C++ function: const signed char* std::vector<signed char, std::allocator<signed char>>::data() const.

impl DataMut for VectorOfSchar[src]

type Output = MutPtr<c_schar>

unsafe fn data_mut(&mut self) -> MutPtr<c_schar>[src]

Calls C++ function: signed char* std::vector<signed char, std::allocator<signed char>>::data().

impl Size for VectorOfSchar[src]

unsafe fn size(&self) -> usize[src]

Calls C++ function: size_t std::vector<signed char, std::allocator<signed char>>::size() const.

Auto Trait Implementations

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]

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

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

impl<V, T> VectorAsSlice for V where
    V: Data<Output = Ptr<T>> + Size
[src]

type Item = T

impl<V, T> VectorAsMutSlice for V where
    V: DataMut<Output = MutPtr<T>> + Size
[src]

type Item = T