pub enum FunctionDetails {
ResourceConstructorName {
resource_constructor_name: String,
},
ResourceMethodName {
resource_name: String,
resource_method_name: String,
},
Fqn(DynamicParsedFunctionName),
VariantName(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FunctionDetails
impl Clone for FunctionDetails
Source§fn clone(&self) -> FunctionDetails
fn clone(&self) -> FunctionDetails
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 moreAuto Trait Implementations§
impl Freeze for FunctionDetails
impl RefUnwindSafe for FunctionDetails
impl Send for FunctionDetails
impl Sync for FunctionDetails
impl Unpin for FunctionDetails
impl UnsafeUnpin for FunctionDetails
impl UnwindSafe for FunctionDetails
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