pub struct GroupCallFlags { /* private fields */ }Implementations§
Source§impl GroupCallFlags
 
impl GroupCallFlags
Sourcepub const DEFAULT: GroupCallFlags
 
pub const DEFAULT: GroupCallFlags
Godot enumerator name: GROUP_CALL_DEFAULT
Sourcepub const REVERSE: GroupCallFlags
 
pub const REVERSE: GroupCallFlags
Godot enumerator name: GROUP_CALL_REVERSE
Sourcepub const DEFERRED: GroupCallFlags
 
pub const DEFERRED: GroupCallFlags
Godot enumerator name: GROUP_CALL_DEFERRED
Sourcepub const UNIQUE: GroupCallFlags
 
pub const UNIQUE: GroupCallFlags
Godot enumerator name: GROUP_CALL_UNIQUE
Trait Implementations§
Source§impl BitOr for GroupCallFlags
 
impl BitOr for GroupCallFlags
Source§impl BitOrAssign for GroupCallFlags
 
impl BitOrAssign for GroupCallFlags
Source§fn bitor_assign(&mut self, rhs: Self)
 
fn bitor_assign(&mut self, rhs: Self)
Performs the 
|= operation. Read moreSource§impl Clone for GroupCallFlags
 
impl Clone for GroupCallFlags
Source§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 moreSource§impl Debug for GroupCallFlags
 
impl Debug for GroupCallFlags
Source§impl Default for GroupCallFlags
 
impl Default for GroupCallFlags
Source§fn default() -> GroupCallFlags
 
fn default() -> GroupCallFlags
Returns the “default value” for a type. Read more
Source§impl EngineBitfield for GroupCallFlags
 
impl EngineBitfield for GroupCallFlags
fn try_from_ord(ord: u64) -> Option<Self>
Source§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
Source§impl FromGodot for GroupCallFlags
 
impl FromGodot for GroupCallFlags
Source§fn try_from_godot(via: Self::Via) -> Result<Self, ConvertError>
 
fn try_from_godot(via: Self::Via) -> Result<Self, 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§fn from_variant(variant: &Variant) -> Self
 
fn from_variant(variant: &Variant) -> Self
⚠️ Performs the conversion from a [
Variant]. Read moreSource§impl GodotConvert for GroupCallFlags
 
impl GodotConvert for GroupCallFlags
Source§impl Hash for GroupCallFlags
 
impl Hash for GroupCallFlags
Source§impl PartialEq for GroupCallFlags
 
impl PartialEq for GroupCallFlags
Source§impl ToGodot for GroupCallFlags
 
impl ToGodot for GroupCallFlags
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) -> Self::Via
 
fn to_godot(&self) -> Self::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 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