pub struct SdfConfig {
pub admin_email: Option<String>,
pub version: Option<String>,
}Expand description
Structured Data File (SDF) related settings.
This type is not used in any activity, and only used as part of another schema.
Fields§
§admin_email: Option<String>An administrator email address to which the SDF processing status reports will be sent.
version: Option<String>Required. The version of SDF being used.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SdfConfig
impl<'de> Deserialize<'de> for SdfConfig
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 Part for SdfConfig
Auto Trait Implementations§
impl Freeze for SdfConfig
impl RefUnwindSafe for SdfConfig
impl Send for SdfConfig
impl Sync for SdfConfig
impl Unpin for SdfConfig
impl UnwindSafe for SdfConfig
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