pub struct AppFileInputArray {
pub name: String,
pub description: Option<String>,
pub input_mode: Option<FileInputModeEnum>,
pub env_key: Option<String>,
pub notes: Option<Value>,
pub source_urls: Option<Vec<String>>,
pub target_dir: String,
}Fields§
§name: String§description: Option<String>§input_mode: Option<FileInputModeEnum>§env_key: Option<String>§notes: Option<Value>§source_urls: Option<Vec<String>>§target_dir: StringImplementations§
Source§impl AppFileInputArray
impl AppFileInputArray
pub fn new(name: String, target_dir: String) -> AppFileInputArray
Trait Implementations§
Source§impl Clone for AppFileInputArray
impl Clone for AppFileInputArray
Source§fn clone(&self) -> AppFileInputArray
fn clone(&self) -> AppFileInputArray
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 AppFileInputArray
impl Debug for AppFileInputArray
Source§impl Default for AppFileInputArray
impl Default for AppFileInputArray
Source§fn default() -> AppFileInputArray
fn default() -> AppFileInputArray
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppFileInputArray
impl<'de> Deserialize<'de> for AppFileInputArray
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 AppFileInputArray
impl PartialEq for AppFileInputArray
Source§impl Serialize for AppFileInputArray
impl Serialize for AppFileInputArray
impl StructuralPartialEq for AppFileInputArray
Auto Trait Implementations§
impl Freeze for AppFileInputArray
impl RefUnwindSafe for AppFileInputArray
impl Send for AppFileInputArray
impl Sync for AppFileInputArray
impl Unpin for AppFileInputArray
impl UnsafeUnpin for AppFileInputArray
impl UnwindSafe for AppFileInputArray
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