Struct iotscape::ServiceDefinition
source · pub struct ServiceDefinition {
pub id: String,
pub methods: BTreeMap<String, MethodDescription>,
pub events: BTreeMap<String, EventDescription>,
pub description: IoTScapeServiceDescription,
}Expand description
Definition of an IoTScape service, to be serialized and set to NetsBlox server
Fields§
§id: String§methods: BTreeMap<String, MethodDescription>§events: BTreeMap<String, EventDescription>§description: IoTScapeServiceDescriptionTrait Implementations§
source§impl Clone for ServiceDefinition
impl Clone for ServiceDefinition
source§fn clone(&self) -> ServiceDefinition
fn clone(&self) -> ServiceDefinition
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 ServiceDefinition
impl Debug for ServiceDefinition
source§impl<'de> Deserialize<'de> for ServiceDefinition
impl<'de> Deserialize<'de> for ServiceDefinition
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 ServiceDefinition
impl Send for ServiceDefinition
impl Sync for ServiceDefinition
impl Unpin for ServiceDefinition
impl UnwindSafe for ServiceDefinition
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