pub struct ConvertResult {
pub config: String,
pub success: bool,
}
Expand description
Result from convert command
Fields§
§config: String
The converted configuration (YAML or JSON)
success: bool
Whether the conversion succeeded
Implementations§
Trait Implementations§
Source§impl Clone for ConvertResult
impl Clone for ConvertResult
Source§fn clone(&self) -> ConvertResult
fn clone(&self) -> ConvertResult
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 moreAuto Trait Implementations§
impl Freeze for ConvertResult
impl RefUnwindSafe for ConvertResult
impl Send for ConvertResult
impl Sync for ConvertResult
impl Unpin for ConvertResult
impl UnwindSafe for ConvertResult
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