pub struct ConfigureAutojoinRequest {
pub scope: String,
pub scope_type: String,
pub scope_name: Option<String>,
pub domains: Vec<String>,
pub widget_id: String,
pub metadata: Option<HashMap<String, Value>>,
}Expand description
Request body for configuring autojoin domains
Fields§
§scope: String§scope_type: String§scope_name: Option<String>§domains: Vec<String>§widget_id: String§metadata: Option<HashMap<String, Value>>Implementations§
Trait Implementations§
Source§impl Clone for ConfigureAutojoinRequest
impl Clone for ConfigureAutojoinRequest
Source§fn clone(&self) -> ConfigureAutojoinRequest
fn clone(&self) -> ConfigureAutojoinRequest
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 ConfigureAutojoinRequest
impl Debug for ConfigureAutojoinRequest
Source§impl<'de> Deserialize<'de> for ConfigureAutojoinRequest
impl<'de> Deserialize<'de> for ConfigureAutojoinRequest
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
Auto Trait Implementations§
impl Freeze for ConfigureAutojoinRequest
impl RefUnwindSafe for ConfigureAutojoinRequest
impl Send for ConfigureAutojoinRequest
impl Sync for ConfigureAutojoinRequest
impl Unpin for ConfigureAutojoinRequest
impl UnwindSafe for ConfigureAutojoinRequest
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