pub struct IndividualConfigRoot {
pub test: bool,
pub videos: Vec<VideoConfig>,
}Expand description
Root model for individual YAML format with videos array.
Fields§
§test: boolTest mode flag - if true, delete videos after upload
videos: Vec<VideoConfig>List of video configurations
Trait Implementations§
Source§impl Clone for IndividualConfigRoot
impl Clone for IndividualConfigRoot
Source§fn clone(&self) -> IndividualConfigRoot
fn clone(&self) -> IndividualConfigRoot
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 IndividualConfigRoot
impl Debug for IndividualConfigRoot
Source§impl<'de> Deserialize<'de> for IndividualConfigRoot
impl<'de> Deserialize<'de> for IndividualConfigRoot
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 Serialize for IndividualConfigRoot
impl Serialize for IndividualConfigRoot
Source§impl Validate for IndividualConfigRoot
impl Validate for IndividualConfigRoot
Source§impl<'v_a> ValidateArgs<'v_a> for IndividualConfigRoot
impl<'v_a> ValidateArgs<'v_a> for IndividualConfigRoot
Auto Trait Implementations§
impl Freeze for IndividualConfigRoot
impl RefUnwindSafe for IndividualConfigRoot
impl Send for IndividualConfigRoot
impl Sync for IndividualConfigRoot
impl Unpin for IndividualConfigRoot
impl UnsafeUnpin for IndividualConfigRoot
impl UnwindSafe for IndividualConfigRoot
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