Struct stdweb::Symbol
[−]
[src]
pub struct Symbol(_);
A type representing a JavaScript Symbol.
Trait Implementations
impl TryFrom<Symbol> for Value[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: Symbol) -> Result<Self, Self::Error>[src]
Performs the conversion.
impl PartialEq<Symbol> for Value[src]
fn eq(&self, right: &Symbol) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl<'a> PartialEq<&'a Symbol> for Value[src]
fn eq(&self, right: &&'a Symbol) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl<'a> PartialEq<Symbol> for &'a Value[src]
fn eq(&self, right: &Symbol) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl PartialEq<Value> for Symbol[src]
fn eq(&self, right: &Value) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl<'a> PartialEq<&'a Value> for Symbol[src]
fn eq(&self, right: &&'a Value) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl<'a> PartialEq<Value> for &'a Symbol[src]
fn eq(&self, right: &Value) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl TryFrom<Value> for Symbol[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>[src]
Performs the conversion.
impl<'a> TryFrom<&'a Value> for &'a Symbol[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &'a Value) -> Result<Self, Self::Error>[src]
Performs the conversion.
impl JsSerialize for Symbol[src]
impl Debug for Symbol[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Clone for Symbol[src]
fn clone(&self) -> Self[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for Symbol[src]
fn eq(&self, rhs: &Symbol) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.