#[repr(C)]pub enum VSMapPropertyError {
peSuccess,
peUnset,
peType,
peIndex,
peError,
}Variants§
peSuccess
peUnset
no key exists
peType
key exists but not of a compatible type
peIndex
index out of bounds
peError
map has error state set
Trait Implementations§
source§impl Clone for VSMapPropertyError
impl Clone for VSMapPropertyError
source§fn clone(&self) -> VSMapPropertyError
fn clone(&self) -> VSMapPropertyError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for VSMapPropertyError
impl Debug for VSMapPropertyError
source§impl Hash for VSMapPropertyError
impl Hash for VSMapPropertyError
source§impl Ord for VSMapPropertyError
impl Ord for VSMapPropertyError
source§fn cmp(&self, other: &VSMapPropertyError) -> Ordering
fn cmp(&self, other: &VSMapPropertyError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<VSMapPropertyError> for VSMapPropertyError
impl PartialEq<VSMapPropertyError> for VSMapPropertyError
source§fn eq(&self, other: &VSMapPropertyError) -> bool
fn eq(&self, other: &VSMapPropertyError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<VSMapPropertyError> for VSMapPropertyError
impl PartialOrd<VSMapPropertyError> for VSMapPropertyError
source§fn partial_cmp(&self, other: &VSMapPropertyError) -> Option<Ordering>
fn partial_cmp(&self, other: &VSMapPropertyError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for VSMapPropertyError
impl Eq for VSMapPropertyError
impl StructuralEq for VSMapPropertyError
impl StructuralPartialEq for VSMapPropertyError
Auto Trait Implementations§
impl RefUnwindSafe for VSMapPropertyError
impl Send for VSMapPropertyError
impl Sync for VSMapPropertyError
impl Unpin for VSMapPropertyError
impl UnwindSafe for VSMapPropertyError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more