pub struct InlineString {
pub t: Option<String>,
}Expand description
Inline string within a cell.
Fields§
§t: Option<String>Trait Implementations§
Source§impl Clone for InlineString
impl Clone for InlineString
Source§fn clone(&self) -> InlineString
fn clone(&self) -> InlineString
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 InlineString
impl Debug for InlineString
Source§impl<'de> Deserialize<'de> for InlineString
impl<'de> Deserialize<'de> for InlineString
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 InlineString
impl PartialEq for InlineString
Source§impl Serialize for InlineString
impl Serialize for InlineString
impl StructuralPartialEq for InlineString
Auto Trait Implementations§
impl Freeze for InlineString
impl RefUnwindSafe for InlineString
impl Send for InlineString
impl Sync for InlineString
impl Unpin for InlineString
impl UnwindSafe for InlineString
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