#[non_exhaustive]pub struct ScriptFnMetadata<'a> {
pub name: &'a str,
pub params: Vec<&'a str>,
pub access: FnAccess,
pub this_type: Option<&'a str>,
pub comments: Vec<&'a str>,
}Expand description
A type containing the metadata of a script-defined function.
Not available under no_function.
Created by AST::iter_functions.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: &'a strFunction name.
params: Vec<&'a str>Function parameters (if any).
access: FnAccessFunction access mode.
this_type: Option<&'a str>Type of this pointer, if any.
Not available under no_object.
comments: Vec<&'a str>(metadata) Function doc-comments (if any).
Exported under the metadata feature only.
Doc-comments are comment lines beginning with /// or comment blocks beginning with /**,
placed immediately before a function definition.
Block doc-comments are kept in a single string slice with line-breaks within.
Line doc-comments are merged, with line-breaks, into a single string slice without a termination line-break.
Leading white-spaces are stripped, and each string slice always starts with the
corresponding doc-comment leader: /// or /**.
Each line in non-block doc-comments starts with ///.
Trait Implementations§
Source§impl<'a> Clone for ScriptFnMetadata<'a>
impl<'a> Clone for ScriptFnMetadata<'a>
Source§fn clone(&self) -> ScriptFnMetadata<'a>
fn clone(&self) -> ScriptFnMetadata<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'a> Debug for ScriptFnMetadata<'a>
impl<'a> Debug for ScriptFnMetadata<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for ScriptFnMetadata<'a>
impl<'de: 'a, 'a> Deserialize<'de> for ScriptFnMetadata<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Display for ScriptFnMetadata<'_>
impl Display for ScriptFnMetadata<'_>
Source§impl<'a> From<&'a ScriptFuncDef> for ScriptFnMetadata<'a>
impl<'a> From<&'a ScriptFuncDef> for ScriptFnMetadata<'a>
Source§fn from(value: &'a ScriptFuncDef) -> Self
fn from(value: &'a ScriptFuncDef) -> Self
Source§impl<'a> Hash for ScriptFnMetadata<'a>
impl<'a> Hash for ScriptFnMetadata<'a>
Source§impl<'a> Ord for ScriptFnMetadata<'a>
impl<'a> Ord for ScriptFnMetadata<'a>
Source§fn cmp(&self, other: &ScriptFnMetadata<'a>) -> Ordering
fn cmp(&self, other: &ScriptFnMetadata<'a>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<'a> PartialEq for ScriptFnMetadata<'a>
impl<'a> PartialEq for ScriptFnMetadata<'a>
Source§impl<'a> PartialOrd for ScriptFnMetadata<'a>
impl<'a> PartialOrd for ScriptFnMetadata<'a>
Source§impl<'a> Serialize for ScriptFnMetadata<'a>
impl<'a> Serialize for ScriptFnMetadata<'a>
impl<'a> Eq for ScriptFnMetadata<'a>
impl<'a> StructuralPartialEq for ScriptFnMetadata<'a>
Auto Trait Implementations§
impl<'a> Freeze for ScriptFnMetadata<'a>
impl<'a> RefUnwindSafe for ScriptFnMetadata<'a>
impl<'a> Send for ScriptFnMetadata<'a>
impl<'a> Sync for ScriptFnMetadata<'a>
impl<'a> Unpin for ScriptFnMetadata<'a>
impl<'a> UnwindSafe for ScriptFnMetadata<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> Variant for T
impl<T> Variant for T
Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Variant trait object to &mut dyn Any.Source§fn as_boxed_any(self: Box<T>) -> Box<dyn Any>
fn as_boxed_any(self: Box<T>) -> Box<dyn Any>
Variant trait object to Box<dyn Any>.