pub struct RoxFile {
pub docs: Option<Vec<Docs>>,
pub tasks: Vec<Task>,
pub pipelines: Option<Vec<Pipeline>>,
pub templates: Option<Vec<Template>>,
pub additional_files: Option<Vec<String>>,
}Expand description
The top-level structure of the Roxfile
Fields§
§docs: Option<Vec<Docs>>§tasks: Vec<Task>§pipelines: Option<Vec<Pipeline>>§templates: Option<Vec<Template>>§additional_files: Option<Vec<String>>Trait Implementations§
source§impl<'de> Deserialize<'de> for RoxFile
impl<'de> Deserialize<'de> for RoxFile
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
Auto Trait Implementations§
impl RefUnwindSafe for RoxFile
impl Send for RoxFile
impl Sync for RoxFile
impl Unpin for RoxFile
impl UnwindSafe for RoxFile
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