pub struct Objects {
pub objects: BTreeMap<String, Object>,
}Expand description
The result of the semantic pass: an intermediate representation of all available object types; including structs, enums and unions.
Fields§
§objects: BTreeMap<String, Object>Maps fully-qualified type names to their resolved object definitions.
Implementations§
Trait Implementations§
Source§impl Index<&str> for Objects
Returns a resolved object using its fully-qualified name.
impl Index<&str> for Objects
Returns a resolved object using its fully-qualified name.
Panics if missing.
E.g.:
ⓘ
let obj = &objects["rerun.datatypes.Vec3D"];
let obj = &objects["rerun.datatypes.Angle"];
let obj = &objects["rerun.components.Text"];
let obj = &objects["rerun.archetypes.Position2D"];Auto Trait Implementations§
impl Freeze for Objects
impl RefUnwindSafe for Objects
impl Send for Objects
impl Sync for Objects
impl Unpin for Objects
impl UnwindSafe for Objects
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more