pub struct AuthInstallServiceRequest {
pub active: Option<bool>,
pub contract: BTreeMap<String, Value>,
pub description: String,
pub display_name: String,
pub namespaces: Vec<String>,
pub session_key: String,
}Expand description
Request payload for Auth.InstallService.
Fields§
§active: Option<bool>§contract: BTreeMap<String, Value>§description: String§display_name: String§namespaces: Vec<String>§session_key: StringTrait Implementations§
Source§impl Clone for AuthInstallServiceRequest
impl Clone for AuthInstallServiceRequest
Source§fn clone(&self) -> AuthInstallServiceRequest
fn clone(&self) -> AuthInstallServiceRequest
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 AuthInstallServiceRequest
impl Debug for AuthInstallServiceRequest
Source§impl<'de> Deserialize<'de> for AuthInstallServiceRequest
impl<'de> Deserialize<'de> for AuthInstallServiceRequest
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 AuthInstallServiceRequest
Auto Trait Implementations§
impl Freeze for AuthInstallServiceRequest
impl RefUnwindSafe for AuthInstallServiceRequest
impl Send for AuthInstallServiceRequest
impl Sync for AuthInstallServiceRequest
impl Unpin for AuthInstallServiceRequest
impl UnsafeUnpin for AuthInstallServiceRequest
impl UnwindSafe for AuthInstallServiceRequest
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