pub struct PacketPresetInput {
pub sections: BTreeMap<String, String>,
pub limitations: Vec<String>,
pub missing_sections: Vec<String>,
}Expand description
Ready-to-format sections for one audience preset.
Fields§
§sections: BTreeMap<String, String>§limitations: Vec<String>§missing_sections: Vec<String>Trait Implementations§
Source§impl Clone for PacketPresetInput
impl Clone for PacketPresetInput
Source§fn clone(&self) -> PacketPresetInput
fn clone(&self) -> PacketPresetInput
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 Debug for PacketPresetInput
impl Debug for PacketPresetInput
Source§impl Default for PacketPresetInput
impl Default for PacketPresetInput
Source§fn default() -> PacketPresetInput
fn default() -> PacketPresetInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PacketPresetInput
impl<'de> Deserialize<'de> for PacketPresetInput
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
impl Eq for PacketPresetInput
Source§impl PartialEq for PacketPresetInput
impl PartialEq for PacketPresetInput
Source§fn eq(&self, other: &PacketPresetInput) -> bool
fn eq(&self, other: &PacketPresetInput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PacketPresetInput
impl Serialize for PacketPresetInput
impl StructuralPartialEq for PacketPresetInput
Auto Trait Implementations§
impl Freeze for PacketPresetInput
impl RefUnwindSafe for PacketPresetInput
impl Send for PacketPresetInput
impl Sync for PacketPresetInput
impl Unpin for PacketPresetInput
impl UnsafeUnpin for PacketPresetInput
impl UnwindSafe for PacketPresetInput
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