Struct GroupCallFlags
pub struct GroupCallFlags { /* private fields */ }
Implementations§
§impl GroupCallFlags
impl GroupCallFlags
pub const DEFAULT: GroupCallFlags
pub const DEFAULT: GroupCallFlags
Godot enumerator name: GROUP_CALL_DEFAULT
pub const REVERSE: GroupCallFlags
pub const REVERSE: GroupCallFlags
Godot enumerator name: GROUP_CALL_REVERSE
pub const DEFERRED: GroupCallFlags
pub const DEFERRED: GroupCallFlags
Godot enumerator name: GROUP_CALL_DEFERRED
pub const UNIQUE: GroupCallFlags
pub const UNIQUE: GroupCallFlags
Godot enumerator name: GROUP_CALL_UNIQUE
Trait Implementations§
§impl BitOr for GroupCallFlags
impl BitOr for GroupCallFlags
§type Output = GroupCallFlags
type Output = GroupCallFlags
The resulting type after applying the
|
operator.§fn bitor(self, rhs: GroupCallFlags) -> <GroupCallFlags as BitOr>::Output
fn bitor(self, rhs: GroupCallFlags) -> <GroupCallFlags as BitOr>::Output
Performs the
|
operation. Read more§impl BitOrAssign for GroupCallFlags
impl BitOrAssign for GroupCallFlags
§fn bitor_assign(&mut self, rhs: GroupCallFlags)
fn bitor_assign(&mut self, rhs: GroupCallFlags)
Performs the
|=
operation. Read more§impl Clone for GroupCallFlags
impl Clone for GroupCallFlags
§fn clone(&self) -> GroupCallFlags
fn clone(&self) -> GroupCallFlags
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for GroupCallFlags
impl Debug for GroupCallFlags
§impl Default for GroupCallFlags
impl Default for GroupCallFlags
§fn default() -> GroupCallFlags
fn default() -> GroupCallFlags
Returns the “default value” for a type. Read more
§impl EngineBitfield for GroupCallFlags
impl EngineBitfield for GroupCallFlags
fn try_from_ord(ord: u64) -> Option<GroupCallFlags>
§fn all_constants() -> &'static [EnumConstant<GroupCallFlags>]
fn all_constants() -> &'static [EnumConstant<GroupCallFlags>]
Returns metadata for all bitfield constants. Read more
fn from_ord(ord: u64) -> Self
fn is_set(self, flag: Self) -> bool
§impl FromGodot for GroupCallFlags
impl FromGodot for GroupCallFlags
§fn try_from_godot(
via: <GroupCallFlags as GodotConvert>::Via,
) -> Result<GroupCallFlags, ConvertError>
fn try_from_godot( via: <GroupCallFlags as GodotConvert>::Via, ) -> Result<GroupCallFlags, ConvertError>
Converts the Godot representation to this type, returning
Err
on failure.§fn from_godot(via: Self::Via) -> Self
fn from_godot(via: Self::Via) -> Self
⚠️ Converts the Godot representation to this type. Read more
§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.§fn from_variant(variant: &Variant) -> Self
fn from_variant(variant: &Variant) -> Self
§impl GodotConvert for GroupCallFlags
impl GodotConvert for GroupCallFlags
§impl Hash for GroupCallFlags
impl Hash for GroupCallFlags
§impl PartialEq for GroupCallFlags
impl PartialEq for GroupCallFlags
§impl ToGodot for GroupCallFlags
impl ToGodot for GroupCallFlags
§fn to_godot(&self) -> <GroupCallFlags as GodotConvert>::Via
fn to_godot(&self) -> <GroupCallFlags as GodotConvert>::Via
Converts this type to Godot representation, optimizing for zero-copy when possible. Read more
§fn to_godot_owned(&self) -> Self::Via
fn to_godot_owned(&self) -> Self::Via
Converts this type to owned Godot representation. Read more
§fn to_variant(&self) -> Variant
fn to_variant(&self) -> Variant
Converts this type to a Variant.
impl Copy for GroupCallFlags
impl Eq for GroupCallFlags
impl StructuralPartialEq for GroupCallFlags
Auto Trait Implementations§
impl Freeze for GroupCallFlags
impl RefUnwindSafe for GroupCallFlags
impl Send for GroupCallFlags
impl Sync for GroupCallFlags
impl Unpin for GroupCallFlags
impl UnwindSafe for GroupCallFlags
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