FunctionDef

Struct FunctionDef 

Source
pub struct FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body> {
    pub mods: Mods,
    pub type_args: TypeArgs,
    pub return_type: Return,
    pub name: Name,
    pub args: Args,
    pub body: Body,
    pub throws: Throws,
}
Expand description

Defines a function

Fields§

§mods: Mods

The modifiers. Must be a sequence

§type_args: TypeArgs

The type arguments. Must be a sequence

§return_type: Return

The return type

§name: Name

The simple name of the class

§args: Args

The function arguments. Must be a sequence

§body: Body

The constructor body

§throws: Throws

The throws declaration. Must be a sequence

Trait Implementations§

Source§

impl<Mods: Clone, TypeArgs: Clone, Return: Clone, Name: Clone, Args: Clone, Throws: Clone, Body: Clone> Clone for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>

Source§

fn clone(&self) -> FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Mods: Debug, TypeArgs: Debug, Return: Debug, Name: Debug, Args: Debug, Throws: Debug, Body: Debug> Debug for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<O, Mods, TypeArgs, Return, Name, Args, Throws, Body> Writable<O> for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>
where O: Output, Mods: WritableSeq<O>, TypeArgs: WritableSeq<O>, Return: Writable<O>, Name: Writable<O>, Args: WritableSeq<O>, Throws: WritableSeq<O>, Body: Writable<O>,

Source§

async fn write_to(&self, output: &mut O) -> Result<(), O::Error>

Writes to the output. Returns the output’s error upon failure. Read more

Auto Trait Implementations§

§

impl<Mods, TypeArgs, Return, Name, Args, Throws, Body> Freeze for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>
where Mods: Freeze, TypeArgs: Freeze, Return: Freeze, Name: Freeze, Args: Freeze, Body: Freeze, Throws: Freeze,

§

impl<Mods, TypeArgs, Return, Name, Args, Throws, Body> RefUnwindSafe for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>
where Mods: RefUnwindSafe, TypeArgs: RefUnwindSafe, Return: RefUnwindSafe, Name: RefUnwindSafe, Args: RefUnwindSafe, Body: RefUnwindSafe, Throws: RefUnwindSafe,

§

impl<Mods, TypeArgs, Return, Name, Args, Throws, Body> Send for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>
where Mods: Send, TypeArgs: Send, Return: Send, Name: Send, Args: Send, Body: Send, Throws: Send,

§

impl<Mods, TypeArgs, Return, Name, Args, Throws, Body> Sync for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>
where Mods: Sync, TypeArgs: Sync, Return: Sync, Name: Sync, Args: Sync, Body: Sync, Throws: Sync,

§

impl<Mods, TypeArgs, Return, Name, Args, Throws, Body> Unpin for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>
where Mods: Unpin, TypeArgs: Unpin, Return: Unpin, Name: Unpin, Args: Unpin, Body: Unpin, Throws: Unpin,

§

impl<Mods, TypeArgs, Return, Name, Args, Throws, Body> UnwindSafe for FunctionDef<Mods, TypeArgs, Return, Name, Args, Throws, Body>
where Mods: UnwindSafe, TypeArgs: UnwindSafe, Return: UnwindSafe, Name: UnwindSafe, Args: UnwindSafe, Body: UnwindSafe, Throws: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.