Skip to main content

TypeTreeReadContext

Trait TypeTreeReadContext 

Source
pub trait TypeTreeReadContext {
    // Required method
    fn get(&self) -> &dyn TypeTree;
}
Expand description

Type returned from TypeTreeForUser, a trait for something that dereferences to a dyn TypeTree.

Required Methods§

Source

fn get(&self) -> &dyn TypeTree

Dereference to a dynamic TypeTree.

Implementations on Foreign Types§

Source§

impl<R, T> TypeTreeReadContext for RwLockReadGuard<'_, R, T>
where R: RawRwLock, T: TypeTree,

Source§

fn get(&self) -> &dyn TypeTree

Implementors§