pub struct TextAnswer {
pub value: String,
}Expand description
A single text answer value.
Fields§
§value: StringTrait Implementations§
Source§impl Clone for TextAnswer
impl Clone for TextAnswer
Source§fn clone(&self) -> TextAnswer
fn clone(&self) -> TextAnswer
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 TextAnswer
impl Debug for TextAnswer
Source§impl<'de> Deserialize<'de> for TextAnswer
impl<'de> Deserialize<'de> for TextAnswer
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 TextAnswer
impl RefUnwindSafe for TextAnswer
impl Send for TextAnswer
impl Sync for TextAnswer
impl Unpin for TextAnswer
impl UnsafeUnpin for TextAnswer
impl UnwindSafe for TextAnswer
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