pub struct ServiceIdAndVersionString {
pub service_id: Option<Box<String>>,
pub version: Option<Box<String>>,
}
Fields§
§service_id: Option<Box<String>>
§version: Option<Box<String>>
Implementations§
Source§impl ServiceIdAndVersionString
impl ServiceIdAndVersionString
pub fn new() -> ServiceIdAndVersionString
Trait Implementations§
Source§impl Clone for ServiceIdAndVersionString
impl Clone for ServiceIdAndVersionString
Source§fn clone(&self) -> ServiceIdAndVersionString
fn clone(&self) -> ServiceIdAndVersionString
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 ServiceIdAndVersionString
impl Debug for ServiceIdAndVersionString
Source§impl Default for ServiceIdAndVersionString
impl Default for ServiceIdAndVersionString
Source§fn default() -> ServiceIdAndVersionString
fn default() -> ServiceIdAndVersionString
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceIdAndVersionString
impl<'de> Deserialize<'de> for ServiceIdAndVersionString
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
impl StructuralPartialEq for ServiceIdAndVersionString
Auto Trait Implementations§
impl Freeze for ServiceIdAndVersionString
impl RefUnwindSafe for ServiceIdAndVersionString
impl Send for ServiceIdAndVersionString
impl Sync for ServiceIdAndVersionString
impl Unpin for ServiceIdAndVersionString
impl UnwindSafe for ServiceIdAndVersionString
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