pub struct LidEntry {
pub value: Option<String>,
pub url: Option<String>,
pub anchor: Option<String>,
}Expand description
A lid value with its correlation anchor. url is set for fields that
have a hyperlink context (HTML / plaintext bodies); anchor is set
for URL-less fields (subject / preheader). Either may be absent for
skeletons generated by templatize (RFC §2.7).
Fields§
§value: Option<String>null is allowed for skeletons (RFC §2.7) and is preserved on
save so the skeleton marker survives the round trip.
url: Option<String>§anchor: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LidEntry
impl<'de> Deserialize<'de> for LidEntry
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 LidEntry
impl RefUnwindSafe for LidEntry
impl Send for LidEntry
impl Sync for LidEntry
impl Unpin for LidEntry
impl UnsafeUnpin for LidEntry
impl UnwindSafe for LidEntry
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