pub struct ServiceLocation {
pub service_location_type: Option<ServiceLocationType>,
pub address: Option<Box<Address>>,
}Expand description
ServiceLocation : Information about the location of the service job.
Fields§
§service_location_type: Option<ServiceLocationType>The location of the service job.
address: Option<Box<Address>>Implementations§
Source§impl ServiceLocation
impl ServiceLocation
Sourcepub fn new() -> ServiceLocation
pub fn new() -> ServiceLocation
Information about the location of the service job.
Trait Implementations§
Source§impl Clone for ServiceLocation
impl Clone for ServiceLocation
Source§fn clone(&self) -> ServiceLocation
fn clone(&self) -> ServiceLocation
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 ServiceLocation
impl Debug for ServiceLocation
Source§impl Default for ServiceLocation
impl Default for ServiceLocation
Source§fn default() -> ServiceLocation
fn default() -> ServiceLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceLocation
impl<'de> Deserialize<'de> for ServiceLocation
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 PartialEq for ServiceLocation
impl PartialEq for ServiceLocation
Source§impl Serialize for ServiceLocation
impl Serialize for ServiceLocation
impl StructuralPartialEq for ServiceLocation
Auto Trait Implementations§
impl Freeze for ServiceLocation
impl RefUnwindSafe for ServiceLocation
impl Send for ServiceLocation
impl Sync for ServiceLocation
impl Unpin for ServiceLocation
impl UnwindSafe for ServiceLocation
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