pub struct Service {
pub name: Ident,
pub methods: Vec<Method>,
pub attributes: Vec<Attribute>,
pub schema: Option<String>,
pub schema_id: Option<String>,
}Expand description
Service definition
Fields§
§name: IdentService name
methods: Vec<Method>methods in this service
attributes: Vec<Attribute>Optional attributes for the service
schema: Option<String>Serialized json schema
schema_id: Option<String>256-bit hash, base64-encoded
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Service
impl<'de> Deserialize<'de> for Service
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<'a> HasAttributes for Service
impl<'a> HasAttributes for Service
Source§fn attributes(&self) -> Attributes<'_> ⓘ
fn attributes(&self) -> Attributes<'_> ⓘ
returns an iterator over the item’s attributes
Auto Trait Implementations§
impl Freeze for Service
impl RefUnwindSafe for Service
impl Send for Service
impl Sync for Service
impl Unpin for Service
impl UnwindSafe for Service
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