pub enum MethodCallBody {
User(Box<MethodCallBodyUser>),
BuiltInMethodCall(Box<BuiltInMethodCall>),
}
Variants§
User(Box<MethodCallBodyUser>)
BuiltInMethodCall(Box<BuiltInMethodCall>)
Trait Implementations§
source§impl Clone for MethodCallBody
impl Clone for MethodCallBody
source§fn clone(&self) -> MethodCallBody
fn clone(&self) -> MethodCallBody
Returns a copy 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 MethodCallBody
impl Debug for MethodCallBody
source§impl<'a> From<&'a MethodCallBody> for RefNode<'a>
impl<'a> From<&'a MethodCallBody> for RefNode<'a>
source§fn from(x: &'a MethodCallBody) -> Self
fn from(x: &'a MethodCallBody) -> Self
Converts to this type from the input type.
source§impl<'a> From<&'a MethodCallBody> for RefNodes<'a>
impl<'a> From<&'a MethodCallBody> for RefNodes<'a>
source§fn from(x: &'a MethodCallBody) -> Self
fn from(x: &'a MethodCallBody) -> Self
Converts to this type from the input type.
source§impl From<MethodCallBody> for AnyNode
impl From<MethodCallBody> for AnyNode
source§fn from(x: MethodCallBody) -> Self
fn from(x: MethodCallBody) -> Self
Converts to this type from the input type.
source§impl<'a> IntoIterator for &'a MethodCallBody
impl<'a> IntoIterator for &'a MethodCallBody
source§impl PartialEq for MethodCallBody
impl PartialEq for MethodCallBody
source§fn eq(&self, other: &MethodCallBody) -> bool
fn eq(&self, other: &MethodCallBody) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> TryFrom<&'a MethodCallBody> for Locate
impl<'a> TryFrom<&'a MethodCallBody> for Locate
source§impl TryFrom<AnyNode> for MethodCallBody
impl TryFrom<AnyNode> for MethodCallBody
source§impl TryFrom<MethodCallBody> for Locate
impl TryFrom<MethodCallBody> for Locate
impl StructuralPartialEq for MethodCallBody
Auto Trait Implementations§
impl RefUnwindSafe for MethodCallBody
impl Send for MethodCallBody
impl Sync for MethodCallBody
impl Unpin for MethodCallBody
impl UnwindSafe for MethodCallBody
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