pub struct GlobalComponent {
pub name: String,
pub properties: Vec<Property>,
pub init_values: Vec<Option<BindingExpression>>,
pub const_properties: Vec<bool>,
pub public_properties: PublicProperties,
pub exported: bool,
pub aliases: Vec<String>,
pub is_builtin: bool,
}
Fields§
§name: String
§properties: Vec<Property>
§init_values: Vec<Option<BindingExpression>>
One entry per property
const_properties: Vec<bool>
§public_properties: PublicProperties
§exported: bool
true if we should expose the global in the generated API
aliases: Vec<String>
The extra names under which this component should be accessible if it is exported several time.
is_builtin: bool
True when this is a built-in global that does not need to be generated
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GlobalComponent
impl !RefUnwindSafe for GlobalComponent
impl !Send for GlobalComponent
impl !Sync for GlobalComponent
impl Unpin for GlobalComponent
impl !UnwindSafe for GlobalComponent
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> 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