pub struct EntityService {
pub service_id: String,
pub service_type: EntityServiceType,
pub endpoint: String,
}Expand description
Entity service endpoint
Fields§
§service_id: StringService ID
service_type: EntityServiceTypeService type
endpoint: StringEndpoint URI
Trait Implementations§
Source§impl Clone for EntityService
impl Clone for EntityService
Source§fn clone(&self) -> EntityService
fn clone(&self) -> EntityService
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EntityService
impl Debug for EntityService
Source§impl<'de> Deserialize<'de> for EntityService
impl<'de> Deserialize<'de> for EntityService
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 EntityService
impl PartialEq for EntityService
Source§fn eq(&self, other: &EntityService) -> bool
fn eq(&self, other: &EntityService) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EntityService
impl Serialize for EntityService
impl Eq for EntityService
impl StructuralPartialEq for EntityService
Auto Trait Implementations§
impl Freeze for EntityService
impl RefUnwindSafe for EntityService
impl Send for EntityService
impl Sync for EntityService
impl Unpin for EntityService
impl UnsafeUnpin for EntityService
impl UnwindSafe for EntityService
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