pub struct ImportConfigResponse {
pub message: String,
pub ok: bool,
pub warnings: Vec<String>,
}Expand description
ImportConfigResponse
JSON schema
{
"type": "object",
"required": [
"message",
"ok",
"warnings"
],
"properties": {
"message": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"warnings": {
"type": "array",
"items": {
"type": "string"
}
}
}
}Fields§
§message: String§ok: bool§warnings: Vec<String>Trait Implementations§
Source§impl Clone for ImportConfigResponse
impl Clone for ImportConfigResponse
Source§fn clone(&self) -> ImportConfigResponse
fn clone(&self) -> ImportConfigResponse
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 ImportConfigResponse
impl Debug for ImportConfigResponse
Source§impl<'de> Deserialize<'de> for ImportConfigResponse
impl<'de> Deserialize<'de> for ImportConfigResponse
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 ImportConfigResponse
impl RefUnwindSafe for ImportConfigResponse
impl Send for ImportConfigResponse
impl Sync for ImportConfigResponse
impl Unpin for ImportConfigResponse
impl UnsafeUnpin for ImportConfigResponse
impl UnwindSafe for ImportConfigResponse
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