pub struct DnsSettingsEditCmd {Show 13 fields
pub provider: DnsProviderKind,
pub zone_id: String,
pub flatten_all_cnames: Option<bool>,
pub foundation_dns: Option<bool>,
pub multi_provider: Option<bool>,
pub ns_ttl: Option<u32>,
pub secondary_overrides: Option<bool>,
pub zone_mode: Option<String>,
pub reference_zone_id: Option<String>,
pub nameservers_type: Option<String>,
pub nameservers_ns_set: Option<u32>,
pub soa_json: Option<String>,
pub token: Option<String>,
}Fields§
§provider: DnsProviderKind§zone_id: String§flatten_all_cnames: Option<bool>§foundation_dns: Option<bool>§multi_provider: Option<bool>§ns_ttl: Option<u32>§secondary_overrides: Option<bool>§zone_mode: Option<String>§reference_zone_id: Option<String>§nameservers_type: Option<String>§nameservers_ns_set: Option<u32>§soa_json: Option<String>§token: Option<String>Trait Implementations§
Source§impl Args for DnsSettingsEditCmd
impl Args for DnsSettingsEditCmd
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Debug for DnsSettingsEditCmd
impl Debug for DnsSettingsEditCmd
Source§impl FromArgMatches for DnsSettingsEditCmd
impl FromArgMatches for DnsSettingsEditCmd
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for DnsSettingsEditCmd
impl RefUnwindSafe for DnsSettingsEditCmd
impl Send for DnsSettingsEditCmd
impl Sync for DnsSettingsEditCmd
impl Unpin for DnsSettingsEditCmd
impl UnsafeUnpin for DnsSettingsEditCmd
impl UnwindSafe for DnsSettingsEditCmd
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestCreates a shared type from an unshared type.