pub enum UnboundedKind {
String,
WString,
Sequence,
}Expand description
Which unbounded member kind was reached.
Variants§
String
string with no IDL bound.
WString
wstring with no IDL bound.
Sequence
sequence<T> with no IDL bound.
Implementations§
Trait Implementations§
Source§impl Clone for UnboundedKind
impl Clone for UnboundedKind
Source§fn clone(&self) -> UnboundedKind
fn clone(&self) -> UnboundedKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UnboundedKind
Source§impl Debug for UnboundedKind
impl Debug for UnboundedKind
impl Eq for UnboundedKind
Source§impl PartialEq for UnboundedKind
impl PartialEq for UnboundedKind
Source§fn eq(&self, other: &UnboundedKind) -> bool
fn eq(&self, other: &UnboundedKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UnboundedKind
Auto Trait Implementations§
impl Freeze for UnboundedKind
impl RefUnwindSafe for UnboundedKind
impl Send for UnboundedKind
impl Sync for UnboundedKind
impl Unpin for UnboundedKind
impl UnsafeUnpin for UnboundedKind
impl UnwindSafe for UnboundedKind
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