pub struct SizeFlags { /* private fields */ }Implementations§
Source§impl SizeFlags
impl SizeFlags
Sourcepub const SHRINK_BEGIN: SizeFlags
pub const SHRINK_BEGIN: SizeFlags
Godot enumerator name: SIZE_SHRINK_BEGIN
Sourcepub const EXPAND_FILL: SizeFlags
pub const EXPAND_FILL: SizeFlags
Godot enumerator name: SIZE_EXPAND_FILL
Sourcepub const SHRINK_CENTER: SizeFlags
pub const SHRINK_CENTER: SizeFlags
Godot enumerator name: SIZE_SHRINK_CENTER
Sourcepub const SHRINK_END: SizeFlags
pub const SHRINK_END: SizeFlags
Godot enumerator name: SIZE_SHRINK_END
Trait Implementations§
Source§impl BitOrAssign for SizeFlags
impl BitOrAssign for SizeFlags
Source§fn bitor_assign(&mut self, rhs: SizeFlags)
fn bitor_assign(&mut self, rhs: SizeFlags)
Performs the
|= operation. Read moreSource§impl EngineBitfield for SizeFlags
impl EngineBitfield for SizeFlags
Source§impl FromGodot for SizeFlags
impl FromGodot for SizeFlags
Source§fn try_from_godot(
via: <SizeFlags as GodotConvert>::Via,
) -> Result<SizeFlags, ConvertError>
fn try_from_godot( via: <SizeFlags as GodotConvert>::Via, ) -> Result<SizeFlags, ConvertError>
Converts the Godot representation to this type, returning
Err on failure.Source§fn from_godot(via: Self::Via) -> Self
fn from_godot(via: Self::Via) -> Self
⚠️ Converts the Godot representation to this type. Read more
Source§fn try_from_variant(variant: &Variant) -> Result<Self, ConvertError>
fn try_from_variant(variant: &Variant) -> Result<Self, ConvertError>
Performs the conversion from a
Variant, returning Err on failure.Source§impl GodotConvert for SizeFlags
impl GodotConvert for SizeFlags
Source§impl ToGodot for SizeFlags
impl ToGodot for SizeFlags
Source§type Pass = ByValue
type Pass = ByValue
Whether arguments of this type are passed by value or by reference. Read more
Source§fn to_godot(&self) -> <SizeFlags as GodotConvert>::Via
fn to_godot(&self) -> <SizeFlags as GodotConvert>::Via
Converts this type to Godot representation, optimizing for zero-copy when possible. Read more
Source§fn to_godot_owned(&self) -> Self::Via
fn to_godot_owned(&self) -> Self::Via
Converts this type to owned Godot representation. Read more
Source§fn to_variant(&self) -> Variant
fn to_variant(&self) -> Variant
Converts this type to a Variant.
impl Copy for SizeFlags
impl Eq for SizeFlags
impl StructuralPartialEq for SizeFlags
Auto Trait Implementations§
impl Freeze for SizeFlags
impl RefUnwindSafe for SizeFlags
impl Send for SizeFlags
impl Sync for SizeFlags
impl Unpin for SizeFlags
impl UnwindSafe for SizeFlags
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