pub struct WirelessWirelessLansCreateRequest {Show 15 fields
pub ssid: String,
pub description: Option<String>,
pub group: Option<Option<Box<PatchedWritableWirelessLanRequestGroup>>>,
pub status: Option<Status>,
pub vlan: Option<Option<Box<InterfaceRequestUntaggedVlan>>>,
pub scope_type: Option<Option<String>>,
pub scope_id: Option<Option<i32>>,
pub tenant: Option<Option<Box<AsnRangeRequestTenant>>>,
pub auth_type: Option<Option<AuthType>>,
pub auth_cipher: Option<Option<AuthCipher>>,
pub auth_psk: Option<String>,
pub owner: Option<Option<Box<AsnRangeRequestOwner>>>,
pub comments: Option<String>,
pub tags: Option<Vec<NestedTagRequest>>,
pub custom_fields: Option<HashMap<String, Value>>,
}Fields§
§ssid: String§description: Option<String>§group: Option<Option<Box<PatchedWritableWirelessLanRequestGroup>>>§status: Option<Status>active- Active *reserved- Reserved *disabled- Disabled *deprecated- Deprecated
vlan: Option<Option<Box<InterfaceRequestUntaggedVlan>>>§scope_type: Option<Option<String>>§scope_id: Option<Option<i32>>§tenant: Option<Option<Box<AsnRangeRequestTenant>>>§auth_type: Option<Option<AuthType>>open- Open *wep- WEP *wpa-personal- WPA Personal (PSK) *wpa-enterprise- WPA Enterprise
auth_cipher: Option<Option<AuthCipher>>auto- Auto *tkip- TKIP *aes- AES
auth_psk: Option<String>§owner: Option<Option<Box<AsnRangeRequestOwner>>>§comments: Option<String>§custom_fields: Option<HashMap<String, Value>>Implementations§
Source§impl WirelessWirelessLansCreateRequest
impl WirelessWirelessLansCreateRequest
pub fn new(ssid: String) -> WirelessWirelessLansCreateRequest
Trait Implementations§
Source§impl Clone for WirelessWirelessLansCreateRequest
impl Clone for WirelessWirelessLansCreateRequest
Source§fn clone(&self) -> WirelessWirelessLansCreateRequest
fn clone(&self) -> WirelessWirelessLansCreateRequest
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 Default for WirelessWirelessLansCreateRequest
impl Default for WirelessWirelessLansCreateRequest
Source§fn default() -> WirelessWirelessLansCreateRequest
fn default() -> WirelessWirelessLansCreateRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WirelessWirelessLansCreateRequest
impl<'de> Deserialize<'de> for WirelessWirelessLansCreateRequest
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 WirelessWirelessLansCreateRequest
impl PartialEq for WirelessWirelessLansCreateRequest
Source§fn eq(&self, other: &WirelessWirelessLansCreateRequest) -> bool
fn eq(&self, other: &WirelessWirelessLansCreateRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WirelessWirelessLansCreateRequest
Auto Trait Implementations§
impl Freeze for WirelessWirelessLansCreateRequest
impl RefUnwindSafe for WirelessWirelessLansCreateRequest
impl Send for WirelessWirelessLansCreateRequest
impl Sync for WirelessWirelessLansCreateRequest
impl Unpin for WirelessWirelessLansCreateRequest
impl UnsafeUnpin for WirelessWirelessLansCreateRequest
impl UnwindSafe for WirelessWirelessLansCreateRequest
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