pub struct LibtorchRemoveArgs {
pub variant: Option<String>,
}Expand description
Remove a libtorch variant.
Fields§
§variant: Option<String>Variant to remove (as shown by fdl libtorch list).
Trait Implementations§
Source§impl Debug for LibtorchRemoveArgs
impl Debug for LibtorchRemoveArgs
Source§impl FdlArgsTrait for LibtorchRemoveArgs
impl FdlArgsTrait for LibtorchRemoveArgs
Source§fn try_parse_from(args: &[String]) -> Result<Self, String>
fn try_parse_from(args: &[String]) -> Result<Self, String>
Parse from an explicit argv slice. First element is the program
name (ignored), following elements are flags/values/positionals.
Source§fn render_help() -> String
fn render_help() -> String
Render
--help to a string.Auto Trait Implementations§
impl Freeze for LibtorchRemoveArgs
impl RefUnwindSafe for LibtorchRemoveArgs
impl Send for LibtorchRemoveArgs
impl Sync for LibtorchRemoveArgs
impl Unpin for LibtorchRemoveArgs
impl UnsafeUnpin for LibtorchRemoveArgs
impl UnwindSafe for LibtorchRemoveArgs
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