pub struct ServiceEndpoint {
pub service_id: String,
pub service_type: String,
pub endpoint: String,
pub description: Option<String>,
}Expand description
Service endpoint for identity (DID-style)
Fields§
§service_id: StringService ID (unique within identity)
service_type: StringService type (e.g., “CredentialRegistry”, “Messaging”, “Website”)
endpoint: StringService endpoint URL or URI
description: Option<String>Optional description
Trait Implementations§
Source§impl Clone for ServiceEndpoint
impl Clone for ServiceEndpoint
Source§fn clone(&self) -> ServiceEndpoint
fn clone(&self) -> ServiceEndpoint
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 ServiceEndpoint
impl Debug for ServiceEndpoint
Source§impl<'de> Deserialize<'de> for ServiceEndpoint
impl<'de> Deserialize<'de> for ServiceEndpoint
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 ServiceEndpoint
impl PartialEq for ServiceEndpoint
Source§fn eq(&self, other: &ServiceEndpoint) -> bool
fn eq(&self, other: &ServiceEndpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceEndpoint
impl Serialize for ServiceEndpoint
impl Eq for ServiceEndpoint
impl StructuralPartialEq for ServiceEndpoint
Auto Trait Implementations§
impl Freeze for ServiceEndpoint
impl RefUnwindSafe for ServiceEndpoint
impl Send for ServiceEndpoint
impl Sync for ServiceEndpoint
impl Unpin for ServiceEndpoint
impl UnsafeUnpin for ServiceEndpoint
impl UnwindSafe for ServiceEndpoint
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