pub struct ServiceListEntry {
pub active: bool,
pub capabilities: Vec<String>,
pub contract_digest: Option<String>,
pub contract_id: Option<String>,
pub created_at: String,
pub description: String,
pub display_name: String,
pub namespaces: Vec<String>,
pub resource_bindings: Option<ResourceBindings>,
pub session_key: String,
}Expand description
Service record returned by Auth.ListServices.
Fields§
§active: bool§capabilities: Vec<String>§contract_digest: Option<String>§contract_id: Option<String>§created_at: String§description: String§display_name: String§namespaces: Vec<String>§resource_bindings: Option<ResourceBindings>§session_key: StringTrait Implementations§
Source§impl Clone for ServiceListEntry
impl Clone for ServiceListEntry
Source§fn clone(&self) -> ServiceListEntry
fn clone(&self) -> ServiceListEntry
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 ServiceListEntry
impl Debug for ServiceListEntry
Source§impl<'de> Deserialize<'de> for ServiceListEntry
impl<'de> Deserialize<'de> for ServiceListEntry
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 ServiceListEntry
impl PartialEq for ServiceListEntry
Source§impl Serialize for ServiceListEntry
impl Serialize for ServiceListEntry
impl StructuralPartialEq for ServiceListEntry
Auto Trait Implementations§
impl Freeze for ServiceListEntry
impl RefUnwindSafe for ServiceListEntry
impl Send for ServiceListEntry
impl Sync for ServiceListEntry
impl Unpin for ServiceListEntry
impl UnsafeUnpin for ServiceListEntry
impl UnwindSafe for ServiceListEntry
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