[][src]Struct binjs::meta::spec::Type

pub struct Type {
    pub spec: TypeSpec,
    // some fields omitted
}

Fields

spec: TypeSpec

Methods

impl Type[src]

pub fn or_null(&mut self) -> &mut Type[src]

pub fn with_spec(&mut self, spec: TypeSpec) -> &mut Type[src]

pub fn with_type(&mut self, type_: Type) -> &mut Type[src]

pub fn spec(&self) -> &TypeSpec[src]

pub fn spec_mut(&mut self) -> &mut TypeSpec[src]

pub fn is_optional(&self) -> bool[src]

pub fn named(name: &NodeName) -> TypeSpec[src]

Shorthand constructors.

pub fn sum(types: &[TypeSpec]) -> TypeSpec[src]

pub fn string() -> TypeSpec[src]

pub fn number() -> TypeSpec[src]

pub fn unsigned_long() -> TypeSpec[src]

pub fn bool() -> TypeSpec[src]

pub fn void() -> TypeSpec[src]

pub fn identifier_name() -> TypeSpec[src]

pub fn property_key() -> TypeSpec[src]

pub fn offset() -> TypeSpec[src]

An offset type, holding a number of bytes in the binary file.

pub fn array(self) -> TypeSpec[src]

pub fn non_empty_array(self) -> TypeSpec[src]

pub fn get_primitive(&self, spec: &Spec) -> Option<IsNullable<Primitive>>[src]

Trait Implementations

impl Clone for Type[src]

impl Debug for Type[src]

impl Eq for Type[src]

impl PartialEq<Type> for Type[src]

impl Pick for Type[src]

impl StructuralPartialEq for Type[src]

Auto Trait Implementations

impl !RefUnwindSafe for Type

impl !Send for Type

impl !Sync for Type

impl Unpin for Type

impl UnwindSafe for Type

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> 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]