pub struct ConfigPathsResponse {
pub cache: String,
pub config: String,
pub temp: String,
}Expand description
ConfigPathsResponse
JSON schema
{
"type": "object",
"required": [
"cache",
"config",
"temp"
],
"properties": {
"cache": {
"type": "string"
},
"config": {
"type": "string"
},
"temp": {
"type": "string"
}
}
}Fields§
§cache: String§config: String§temp: StringTrait Implementations§
Source§impl Clone for ConfigPathsResponse
impl Clone for ConfigPathsResponse
Source§fn clone(&self) -> ConfigPathsResponse
fn clone(&self) -> ConfigPathsResponse
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 ConfigPathsResponse
impl Debug for ConfigPathsResponse
Source§impl<'de> Deserialize<'de> for ConfigPathsResponse
impl<'de> Deserialize<'de> for ConfigPathsResponse
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 From<&ConfigPathsResponse> for ConfigPathsResponse
impl From<&ConfigPathsResponse> for ConfigPathsResponse
Source§fn from(value: &ConfigPathsResponse) -> Self
fn from(value: &ConfigPathsResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConfigPathsResponse
impl RefUnwindSafe for ConfigPathsResponse
impl Send for ConfigPathsResponse
impl Sync for ConfigPathsResponse
impl Unpin for ConfigPathsResponse
impl UnwindSafe for ConfigPathsResponse
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