pub struct ExportSetting {
pub suffix: String,
pub format: Format,
pub constraint: Box<Constraint>,
}
Expand description
ExportSetting : An export setting.
Fields§
§suffix: String
§format: Format
§constraint: Box<Constraint>
Implementations§
Source§impl ExportSetting
impl ExportSetting
Sourcepub fn new(
suffix: String,
format: Format,
constraint: Constraint,
) -> ExportSetting
pub fn new( suffix: String, format: Format, constraint: Constraint, ) -> ExportSetting
An export setting.
Trait Implementations§
Source§impl Clone for ExportSetting
impl Clone for ExportSetting
Source§fn clone(&self) -> ExportSetting
fn clone(&self) -> ExportSetting
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 ExportSetting
impl Debug for ExportSetting
Source§impl Default for ExportSetting
impl Default for ExportSetting
Source§fn default() -> ExportSetting
fn default() -> ExportSetting
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportSetting
impl<'de> Deserialize<'de> for ExportSetting
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 ExportSetting
impl PartialEq for ExportSetting
Source§impl Serialize for ExportSetting
impl Serialize for ExportSetting
impl StructuralPartialEq for ExportSetting
Auto Trait Implementations§
impl Freeze for ExportSetting
impl RefUnwindSafe for ExportSetting
impl Send for ExportSetting
impl Sync for ExportSetting
impl Unpin for ExportSetting
impl UnwindSafe for ExportSetting
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