Struct iotscape::MethodDescription
source · pub struct MethodDescription {
pub documentation: Option<String>,
pub params: Vec<MethodParam>,
pub returns: MethodReturns,
}Expand description
Describes a method belonging to an IoTScape service
Fields§
§documentation: Option<String>§params: Vec<MethodParam>§returns: MethodReturnsTrait Implementations§
source§impl Clone for MethodDescription
impl Clone for MethodDescription
source§fn clone(&self) -> MethodDescription
fn clone(&self) -> MethodDescription
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 MethodDescription
impl Debug for MethodDescription
source§impl<'de> Deserialize<'de> for MethodDescription
impl<'de> Deserialize<'de> for MethodDescription
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
Auto Trait Implementations§
impl RefUnwindSafe for MethodDescription
impl Send for MethodDescription
impl Sync for MethodDescription
impl Unpin for MethodDescription
impl UnwindSafe for MethodDescription
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