Struct gdnative_core::export::StaticArgs
source · [−]pub struct StaticArgs<F> { /* private fields */ }
Expand description
Adapter for methods whose arguments are statically determined. If the arguments would fail to
type check, the method will print the errors to Godot’s debug console and return null
.
Implementations
sourceimpl<F> StaticArgs<F>
impl<F> StaticArgs<F>
Trait Implementations
sourceimpl<F: Clone> Clone for StaticArgs<F>
impl<F: Clone> Clone for StaticArgs<F>
sourcefn clone(&self) -> StaticArgs<F>
fn clone(&self) -> StaticArgs<F>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<F: Debug> Debug for StaticArgs<F>
impl<F: Debug> Debug for StaticArgs<F>
sourceimpl<F: Default> Default for StaticArgs<F>
impl<F: Default> Default for StaticArgs<F>
sourcefn default() -> StaticArgs<F>
fn default() -> StaticArgs<F>
Returns the “default value” for a type. Read more
sourceimpl<C: NativeClass, F: StaticArgsMethod<C>> Method<C> for StaticArgs<F>
impl<C: NativeClass, F: StaticArgsMethod<C>> Method<C> for StaticArgs<F>
impl<F: Copy> Copy for StaticArgs<F>
Auto Trait Implementations
impl<F> RefUnwindSafe for StaticArgs<F> where
F: RefUnwindSafe,
impl<F> Send for StaticArgs<F> where
F: Send,
impl<F> Sync for StaticArgs<F> where
F: Sync,
impl<F> Unpin for StaticArgs<F> where
F: Unpin,
impl<F> UnwindSafe for StaticArgs<F> where
F: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more