pub enum FunctionReferenceType {
Function {
function: String,
},
RawResourceConstructor {
resource: String,
},
RawResourceDrop {
resource: String,
},
RawResourceMethod {
resource: String,
method: String,
},
RawResourceStaticMethod {
resource: String,
method: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for FunctionReferenceType
impl Clone for FunctionReferenceType
Source§fn clone(&self) -> FunctionReferenceType
fn clone(&self) -> FunctionReferenceType
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 FunctionReferenceType
impl Debug for FunctionReferenceType
Source§impl<'de> Deserialize<'de> for FunctionReferenceType
impl<'de> Deserialize<'de> for FunctionReferenceType
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FunctionReferenceType
impl PartialEq for FunctionReferenceType
Source§impl Serialize for FunctionReferenceType
impl Serialize for FunctionReferenceType
impl StructuralPartialEq for FunctionReferenceType
Auto Trait Implementations§
impl Freeze for FunctionReferenceType
impl RefUnwindSafe for FunctionReferenceType
impl Send for FunctionReferenceType
impl Sync for FunctionReferenceType
impl Unpin for FunctionReferenceType
impl UnsafeUnpin for FunctionReferenceType
impl UnwindSafe for FunctionReferenceType
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