pub struct Item {
pub all_format: Option<String>,
pub current: Option<Current>,
pub datasource: Option<String>,
pub include_all: Option<bool>,
pub multi: Option<bool>,
pub multi_format: Option<String>,
pub name: Option<String>,
pub options: Option<Vec<Item>>,
pub query: Option<String>,
pub refresh: Option<bool>,
pub regex: Option<String>,
pub type: Option<String>,
}
Fields§
§all_format: Option<String>
§current: Option<Current>
§datasource: Option<String>
§include_all: Option<bool>
§multi: Option<bool>
§multi_format: Option<String>
§name: Option<String>
§options: Option<Vec<Item>>
§query: Option<String>
§refresh: Option<bool>
§regex: Option<String>
§type: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Item
impl<'de> Deserialize<'de> for Item
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 Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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