pub struct OptionsInfoResponse {Show 16 fields
pub dlna: Vec<OptionsInfoOption>,
pub filter: Vec<OptionsInfoOption>,
pub ftp: Vec<OptionsInfoOption>,
pub http: Vec<OptionsInfoOption>,
pub log: Vec<OptionsInfoOption>,
pub main: Vec<OptionsInfoOption>,
pub mount: Vec<OptionsInfoOption>,
pub nfs: Vec<OptionsInfoOption>,
pub proxy: Vec<OptionsInfoOption>,
pub rc: Vec<OptionsInfoOption>,
pub restic: Vec<OptionsInfoOption>,
pub s3: Vec<OptionsInfoOption>,
pub sftp: Vec<OptionsInfoOption>,
pub vfs: Vec<OptionsInfoOption>,
pub webdav: Vec<OptionsInfoOption>,
pub extra: HashMap<String, Vec<OptionsInfoOption>>,
}Expand description
OptionsInfoResponse
JSON schema
{
"type": "object",
"required": [
"dlna",
"filter",
"ftp",
"http",
"log",
"main",
"mount",
"nfs",
"proxy",
"rc",
"restic",
"s3",
"sftp",
"vfs",
"webdav"
],
"properties": {
"dlna": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"filter": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"ftp": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"http": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"log": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"main": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"mount": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"nfs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"proxy": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"rc": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"restic": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"s3": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"sftp": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"vfs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
},
"webdav": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
}
},
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OptionsInfoOption"
}
}
}Fields§
§dlna: Vec<OptionsInfoOption>§filter: Vec<OptionsInfoOption>§ftp: Vec<OptionsInfoOption>§http: Vec<OptionsInfoOption>§log: Vec<OptionsInfoOption>§main: Vec<OptionsInfoOption>§mount: Vec<OptionsInfoOption>§nfs: Vec<OptionsInfoOption>§proxy: Vec<OptionsInfoOption>§rc: Vec<OptionsInfoOption>§restic: Vec<OptionsInfoOption>§s3: Vec<OptionsInfoOption>§sftp: Vec<OptionsInfoOption>§vfs: Vec<OptionsInfoOption>§webdav: Vec<OptionsInfoOption>§extra: HashMap<String, Vec<OptionsInfoOption>>Trait Implementations§
Source§impl Clone for OptionsInfoResponse
impl Clone for OptionsInfoResponse
Source§fn clone(&self) -> OptionsInfoResponse
fn clone(&self) -> OptionsInfoResponse
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 OptionsInfoResponse
impl Debug for OptionsInfoResponse
Source§impl<'de> Deserialize<'de> for OptionsInfoResponse
impl<'de> Deserialize<'de> for OptionsInfoResponse
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<&OptionsInfoResponse> for OptionsInfoResponse
impl From<&OptionsInfoResponse> for OptionsInfoResponse
Source§fn from(value: &OptionsInfoResponse) -> Self
fn from(value: &OptionsInfoResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OptionsInfoResponse
impl RefUnwindSafe for OptionsInfoResponse
impl Send for OptionsInfoResponse
impl Sync for OptionsInfoResponse
impl Unpin for OptionsInfoResponse
impl UnwindSafe for OptionsInfoResponse
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