pub struct Element<'a> {
pub by: Vec<Cow<'a, str>>,
pub hash: Option<Cow<'a, str>>,
pub cert: Option<Cow<'a, str>>,
pub chain: Option<Cow<'a, str>>,
pub subject: Option<Cow<'a, str>>,
pub uri: Vec<Cow<'a, str>>,
pub dns: Vec<Cow<'a, str>>,
}
Expand description
An XFCC element
Fields§
§by: Vec<Cow<'a, str>>
§hash: Option<Cow<'a, str>>
§cert: Option<Cow<'a, str>>
§chain: Option<Cow<'a, str>>
§subject: Option<Cow<'a, str>>
§uri: Vec<Cow<'a, str>>
§dns: Vec<Cow<'a, str>>
Trait Implementations§
impl<'a> Eq for Element<'a>
impl<'a> StructuralPartialEq for Element<'a>
Auto Trait Implementations§
impl<'a> Freeze for Element<'a>
impl<'a> RefUnwindSafe for Element<'a>
impl<'a> Send for Element<'a>
impl<'a> Sync for Element<'a>
impl<'a> Unpin for Element<'a>
impl<'a> UnwindSafe for Element<'a>
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