pub struct DseDataSet {
pub code: Option<String>,
pub data: Option<String>,
}Expand description
A single dataset within a DSE sentence.
Fields§
§code: Option<String>Data code.
data: Option<String>Data value.
Trait Implementations§
Source§impl Clone for DseDataSet
impl Clone for DseDataSet
Source§fn clone(&self) -> DseDataSet
fn clone(&self) -> DseDataSet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DseDataSet
impl Debug for DseDataSet
Source§impl PartialEq for DseDataSet
impl PartialEq for DseDataSet
impl StructuralPartialEq for DseDataSet
Auto Trait Implementations§
impl Freeze for DseDataSet
impl RefUnwindSafe for DseDataSet
impl Send for DseDataSet
impl Sync for DseDataSet
impl Unpin for DseDataSet
impl UnsafeUnpin for DseDataSet
impl UnwindSafe for DseDataSet
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