pub struct PseudoTextInput {
pub title: String,
pub description: String,
pub name: String,
pub link: String,
}
Expand description
Serde impled version of rss::TextInput
Fields§
§title: String
§description: String
§name: String
§link: String
Trait Implementations§
Source§impl Clone for PseudoTextInput
impl Clone for PseudoTextInput
Source§fn clone(&self) -> PseudoTextInput
fn clone(&self) -> PseudoTextInput
Returns a copy 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 PseudoTextInput
impl Debug for PseudoTextInput
Source§impl<'de> Deserialize<'de> for PseudoTextInput
impl<'de> Deserialize<'de> for PseudoTextInput
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 From<PseudoTextInput> for TextInput
impl From<PseudoTextInput> for TextInput
Source§fn from(val: PseudoTextInput) -> Self
fn from(val: PseudoTextInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PseudoTextInput
impl RefUnwindSafe for PseudoTextInput
impl Send for PseudoTextInput
impl Sync for PseudoTextInput
impl Unpin for PseudoTextInput
impl UnwindSafe for PseudoTextInput
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