pub enum ServiceSubtypes {
Service(Service),
}Variants§
Trait Implementations§
Source§impl Clone for ServiceSubtypes
impl Clone for ServiceSubtypes
Source§fn clone(&self) -> ServiceSubtypes
fn clone(&self) -> ServiceSubtypes
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 ServiceSubtypes
impl Debug for ServiceSubtypes
Source§impl<'de> Deserialize<'de> for ServiceSubtypes
impl<'de> Deserialize<'de> for ServiceSubtypes
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 From<ServiceSubtypes> for Service
impl From<ServiceSubtypes> for Service
Source§fn from(value: ServiceSubtypes) -> Self
fn from(value: ServiceSubtypes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ServiceSubtypes
impl PartialEq for ServiceSubtypes
Source§impl Serialize for ServiceSubtypes
impl Serialize for ServiceSubtypes
impl StructuralPartialEq for ServiceSubtypes
Auto Trait Implementations§
impl Freeze for ServiceSubtypes
impl RefUnwindSafe for ServiceSubtypes
impl Send for ServiceSubtypes
impl Sync for ServiceSubtypes
impl Unpin for ServiceSubtypes
impl UnwindSafe for ServiceSubtypes
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