pub struct ServeListResponseListItemParams {
pub fs: String,
pub id: Value,
pub opt: Map<String, Value>,
pub type_: String,
pub vfs_opt: Map<String, Value>,
}Expand description
Serve configuration parameters supplied at startup.
JSON schema
{
"description": "Serve configuration parameters supplied at startup.",
"type": "object",
"required": [
"fs",
"id",
"type"
],
"properties": {
"fs": {
"type": "string"
},
"opt": {
"type": "object",
"additionalProperties": true
},
"type": {
"type": "string"
},
"vfsOpt": {
"type": "object",
"additionalProperties": true
}
},
"additionalProperties": true
}Fields§
§fs: String§id: Value§opt: Map<String, Value>§type_: String§vfs_opt: Map<String, Value>Trait Implementations§
Source§impl Clone for ServeListResponseListItemParams
impl Clone for ServeListResponseListItemParams
Source§fn clone(&self) -> ServeListResponseListItemParams
fn clone(&self) -> ServeListResponseListItemParams
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<'de> Deserialize<'de> for ServeListResponseListItemParams
impl<'de> Deserialize<'de> for ServeListResponseListItemParams
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<&ServeListResponseListItemParams> for ServeListResponseListItemParams
impl From<&ServeListResponseListItemParams> for ServeListResponseListItemParams
Source§fn from(value: &ServeListResponseListItemParams) -> Self
fn from(value: &ServeListResponseListItemParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ServeListResponseListItemParams
impl RefUnwindSafe for ServeListResponseListItemParams
impl Send for ServeListResponseListItemParams
impl Sync for ServeListResponseListItemParams
impl Unpin for ServeListResponseListItemParams
impl UnwindSafe for ServeListResponseListItemParams
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