[−][src]Struct stdweb::Array
A type representing a JavaScript array.
Methods
impl Array[src]
Trait Implementations
impl JsSerialize for Array[src]
impl<T> TryFrom<Vec<T>> for Array where
T: JsSerialize, [src]
T: JsSerialize,
type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: Vec<T>) -> Result<Self, Self::Error>[src]
impl<'a, T> TryFrom<&'a Vec<T>> for Array where
T: JsSerialize, [src]
T: JsSerialize,
type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a Vec<T>) -> Result<Self, Self::Error>[src]
impl<'a, T> TryFrom<&'a mut Vec<T>> for Array where
T: JsSerialize, [src]
T: JsSerialize,
type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut Vec<T>) -> Result<Self, Self::Error>[src]
impl<'a, T> TryFrom<&'a [T]> for Array where
T: JsSerialize, [src]
T: JsSerialize,
type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a [T]) -> Result<Self, Self::Error>[src]
impl<'a, T> TryFrom<&'a mut [T]> for Array where
T: JsSerialize, [src]
T: JsSerialize,
type Error = Void
The type returned in the event of a conversion error.
fn try_from(source: &'a mut [T]) -> Result<Self, Self::Error>[src]
impl TryFrom<Array> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: Array) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for Array[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: Reference) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Reference> for Array[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: &Reference) -> Result<Self, Self::Error>[src]
impl TryFrom<Value> for Array[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Value> for Array[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error>[src]
impl<'a, E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<&'a Array> for Vec<V>[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(array: &'a Array) -> Result<Self, Self::Error>[src]
impl<E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<Array> for Vec<V>[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(array: Array) -> Result<Self, Self::Error>[src]
impl InstanceOf for Array[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for Array[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl Eq for Array[src]
impl Clone for Array[src]
impl AsRef<Reference> for Array[src]
impl PartialEq<Array> for Array[src]
impl From<Array> for Reference[src]
impl From<Array> for Vec<Value>[src]
impl<'a> From<&'a Array> for Vec<Value>[src]
impl<'a> From<&'a mut Array> for Vec<Value>[src]
impl<V> From<Vec<V>> for Array where
V: JsSerialize, [src]
V: JsSerialize,
impl<'a, V> From<&'a Vec<V>> for Array where
V: JsSerialize, [src]
V: JsSerialize,
impl<'a, V> From<&'a mut Vec<V>> for Array where
V: JsSerialize, [src]
V: JsSerialize,
impl<'a, V> From<&'a [V]> for Array where
V: JsSerialize, [src]
V: JsSerialize,
impl<'a, V> From<&'a mut [V]> for Array where
V: JsSerialize, [src]
V: JsSerialize,
fn from(value: &'a mut [V]) -> Self[src]
impl Debug for Array[src]
Auto Trait Implementations
impl Send for Array
impl Unpin for Array
impl Sync for Array
impl RefUnwindSafe for Array
impl UnwindSafe for Array
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,