pub struct CodeParameterEcho {
pub format: Option<String>,
pub lang: Option<String>,
pub db: Option<String>,
pub start_date: Option<String>,
pub end_date: Option<String>,
pub start_position: Option<u32>,
pub extras: BTreeMap<String, String>,
}Expand description
Echoed request parameters for getDataCode.
Fields§
§format: Option<String>Echoed format parameter, if present in the response payload.
lang: Option<String>Echoed lang parameter, if present in the response payload.
db: Option<String>Echoed db parameter, if present in the response payload.
start_date: Option<String>Echoed startDate parameter, if present in the response payload.
end_date: Option<String>Echoed endDate parameter, if present in the response payload.
start_position: Option<u32>Echoed startPosition parameter, if present in the response payload.
extras: BTreeMap<String, String>Additional parameter echoes not normalized into dedicated fields.
Trait Implementations§
Source§impl Clone for CodeParameterEcho
impl Clone for CodeParameterEcho
Source§fn clone(&self) -> CodeParameterEcho
fn clone(&self) -> CodeParameterEcho
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 CodeParameterEcho
impl Debug for CodeParameterEcho
Source§impl Default for CodeParameterEcho
impl Default for CodeParameterEcho
Source§fn default() -> CodeParameterEcho
fn default() -> CodeParameterEcho
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeParameterEcho
impl<'de> Deserialize<'de> for CodeParameterEcho
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 PartialEq for CodeParameterEcho
impl PartialEq for CodeParameterEcho
Source§impl Serialize for CodeParameterEcho
impl Serialize for CodeParameterEcho
impl Eq for CodeParameterEcho
impl StructuralPartialEq for CodeParameterEcho
Auto Trait Implementations§
impl Freeze for CodeParameterEcho
impl RefUnwindSafe for CodeParameterEcho
impl Send for CodeParameterEcho
impl Sync for CodeParameterEcho
impl Unpin for CodeParameterEcho
impl UnsafeUnpin for CodeParameterEcho
impl UnwindSafe for CodeParameterEcho
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