pub enum InqResItem<T> {
Text(TextItem<T>),
Long(IntItem),
}Variants§
Implementations§
Source§impl<T> InqResItem<T>
impl<T> InqResItem<T>
pub fn into_tuple(self) -> (MQXA, AttributeValue<T>)
Trait Implementations§
Source§impl<T: Clone> Clone for InqResItem<T>
impl<T: Clone> Clone for InqResItem<T>
Source§fn clone(&self) -> InqResItem<T>
fn clone(&self) -> InqResItem<T>
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<T: Debug> Debug for InqResItem<T>
impl<T: Debug> Debug for InqResItem<T>
impl<T: Copy> Copy for InqResItem<T>
Auto Trait Implementations§
impl<T> Freeze for InqResItem<T>where
T: Freeze,
impl<T> RefUnwindSafe for InqResItem<T>where
T: RefUnwindSafe,
impl<T> Send for InqResItem<T>where
T: Send,
impl<T> Sync for InqResItem<T>where
T: Sync,
impl<T> Unpin for InqResItem<T>where
T: Unpin,
impl<T> UnwindSafe for InqResItem<T>where
T: UnwindSafe,
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