pub struct ClientConfig {
pub information_config: Option<InformationConfig>,
pub non_temporary_address_config: Option<AddressConfig>,
pub prefix_delegation_config: Option<PrefixDelegationConfig>,
/* private fields */
}
Fields§
§information_config: Option<InformationConfig>
Configuration for requesting configuration information.
If not set, interpreted as empty (no configuration information will be requested).
non_temporary_address_config: Option<AddressConfig>
Non-temporary address configuration.
Configures the client to negotiate non-temporary addresses (IA_NA), as defined in RFC 8415, section 6.2.
If not set, interpreted as a configuration with an address count of 0 (non-temporary addresses will not be negotiated). If invalid, client creation will fail and the pipelined channel will be closed.
prefix_delegation_config: Option<PrefixDelegationConfig>
Prefix delegation configuration.
Configures the client to negotiate a delegated prefix (IA_PD), as defined in RFC 8415, section 6.3.
Optional. If not set, delegated prefixes will not be requested. If invalid, client creation will fail and the pipelined channel will be closed.
Trait Implementations§
Source§impl Clone for ClientConfig
impl Clone for ClientConfig
Source§fn clone(&self) -> ClientConfig
fn clone(&self) -> ClientConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ClientConfig
impl Debug for ClientConfig
Source§impl<D: ResourceDialect> Decode<ClientConfig, D> for ClientConfig
impl<D: ResourceDialect> Decode<ClientConfig, D> for ClientConfig
Source§impl Default for ClientConfig
impl Default for ClientConfig
Source§fn default() -> ClientConfig
fn default() -> ClientConfig
Source§impl<D: ResourceDialect> Encode<ClientConfig, D> for &ClientConfig
impl<D: ResourceDialect> Encode<ClientConfig, D> for &ClientConfig
Source§impl PartialEq for ClientConfig
impl PartialEq for ClientConfig
Source§impl TypeMarker for ClientConfig
impl TypeMarker for ClientConfig
Source§type Owned = ClientConfig
type Owned = ClientConfig
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.Source§impl ValueTypeMarker for ClientConfig
impl ValueTypeMarker for ClientConfig
Source§type Borrowed<'a> = &'a ClientConfig
type Borrowed<'a> = &'a ClientConfig
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Persistable for ClientConfig
impl StructuralPartialEq for ClientConfig
Auto Trait Implementations§
impl Freeze for ClientConfig
impl RefUnwindSafe for ClientConfig
impl Send for ClientConfig
impl Sync for ClientConfig
impl Unpin for ClientConfig
impl UnwindSafe for ClientConfig
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)