wit_parser

Struct LiveTypes

source
pub struct LiveTypes { /* private fields */ }

Implementations§

source§

impl LiveTypes

source

pub fn iter(&self) -> impl Iterator<Item = TypeId> + '_

source

pub fn len(&self) -> usize

source

pub fn add_interface(&mut self, resolve: &Resolve, iface: InterfaceId)

source

pub fn add_world(&mut self, resolve: &Resolve, world: WorldId)

source

pub fn add_world_item(&mut self, resolve: &Resolve, item: &WorldItem)

source

pub fn add_func(&mut self, resolve: &Resolve, func: &Function)

source

pub fn add_type_id(&mut self, resolve: &Resolve, ty: TypeId)

source

pub fn add_type(&mut self, resolve: &Resolve, ty: &Type)

Trait Implementations§

source§

impl Default for LiveTypes

source§

fn default() -> LiveTypes

Returns the “default value” for a type. Read more
source§

impl TypeIdVisitor for LiveTypes

source§

fn before_visit_type_id(&mut self, id: TypeId) -> bool

Callback invoked just before a type is visited. Read more
source§

fn after_visit_type_id(&mut self, id: TypeId)

Callback invoked once a type is finished being visited.
source§

fn visit_interface(&mut self, resolve: &Resolve, iface: InterfaceId)

source§

fn visit_world(&mut self, resolve: &Resolve, world: WorldId)

source§

fn visit_world_item(&mut self, resolve: &Resolve, item: &WorldItem)

source§

fn visit_func(&mut self, resolve: &Resolve, func: &Function)

source§

fn visit_type_id(&mut self, resolve: &Resolve, ty: TypeId)

source§

fn visit_type_def(&mut self, resolve: &Resolve, ty: &TypeDef)

source§

fn visit_type(&mut self, resolve: &Resolve, ty: &Type)

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.