pub struct ConfigCheckResponse {
pub errors: Option<String>,
pub result: String,
pub warnings: Option<String>,
}Fields§
§errors: Option<String>§result: String§warnings: Option<String>Trait Implementations§
Source§impl Clone for ConfigCheckResponse
impl Clone for ConfigCheckResponse
Source§fn clone(&self) -> ConfigCheckResponse
fn clone(&self) -> ConfigCheckResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConfigCheckResponse
impl Debug for ConfigCheckResponse
Source§impl Default for ConfigCheckResponse
impl Default for ConfigCheckResponse
Source§fn default() -> ConfigCheckResponse
fn default() -> ConfigCheckResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigCheckResponse
impl<'de> Deserialize<'de> for ConfigCheckResponse
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 Freeze for ConfigCheckResponse
impl RefUnwindSafe for ConfigCheckResponse
impl Send for ConfigCheckResponse
impl Sync for ConfigCheckResponse
impl Unpin for ConfigCheckResponse
impl UnsafeUnpin for ConfigCheckResponse
impl UnwindSafe for ConfigCheckResponse
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