pub struct ChunkConfig {
pub selectors: Vec<String>,
pub active: bool,
}Expand description
Configuration for enabling chunk data via SFNC features.
Fields§
§selectors: Vec<String>Names of chunk selectors that should be enabled on the device.
active: boolWhether chunk mode should be active after configuration.
Trait Implementations§
Source§impl Clone for ChunkConfig
impl Clone for ChunkConfig
Source§fn clone(&self) -> ChunkConfig
fn clone(&self) -> ChunkConfig
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 ChunkConfig
impl Debug for ChunkConfig
Source§impl Default for ChunkConfig
impl Default for ChunkConfig
Source§fn default() -> ChunkConfig
fn default() -> ChunkConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ChunkConfig
impl RefUnwindSafe for ChunkConfig
impl Send for ChunkConfig
impl Sync for ChunkConfig
impl Unpin for ChunkConfig
impl UnwindSafe for ChunkConfig
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