[][src]Struct binjs_es6::ast::EagerGetter

pub struct EagerGetter {
    pub name: PropertyName,
    pub directives: ListOfDirective,
    pub contents: GetterContents,
}

Implementation of interface EagerGetter.

Fields

name: PropertyNamedirectives: ListOfDirectivecontents: GetterContents

Trait Implementations

impl Clone for EagerGetter[src]

impl Debug for EagerGetter[src]

impl Default for EagerGetter[src]

impl<R> Deserialization<EagerGetter> for Deserializer<R> where
    R: TokenReader
[src]

impl<'de> Deserialize<'de> for EagerGetter[src]

impl<'a> From<&'a mut EagerGetter> for ViewMutEagerGetter<'a>[src]

impl From<EagerGetter> for Getter[src]

impl From<EagerGetter> for MethodDefinition[src]

impl From<EagerGetter> for ObjectProperty[src]

impl<R> InnerDeserialization<EagerGetter> for Deserializer<R> where
    R: TokenReader
[src]

impl Node for EagerGetter[src]

Make it possible to downcast/upcast between EagerGetter and binjs_shared::ast::Node.

fn name(&self) -> &'static str[src]

The name of this node. Used mostly for debugging purposes.

impl PartialEq<EagerGetter> for EagerGetter[src]

impl<W> Serialization<EagerGetter> for Serializer<W> where
    W: TokenWriter
[src]

impl Serialize for EagerGetter[src]

impl StructuralPartialEq for EagerGetter[src]

impl<'a> Walker<'a> for EagerGetter[src]

type Output = EagerGetter

Auto Trait Implementations

impl !RefUnwindSafe for EagerGetter

impl !Send for EagerGetter

impl !Sync for EagerGetter

impl Unpin for EagerGetter

impl UnwindSafe for EagerGetter

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]