pub struct ListTagged<T, O> {
pub tags: Vec<T>,
pub object: O,
}Expand description
A custom tagged object parsed from a crypt file.
Fields§
§object: OTrait Implementations§
Source§impl<T: Clone, O: Clone> Clone for ListTagged<T, O>
impl<T: Clone, O: Clone> Clone for ListTagged<T, O>
Source§fn clone(&self) -> ListTagged<T, O>
fn clone(&self) -> ListTagged<T, O>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T, O> TryInto<ListTagged<T, O>> for TracedObject
impl<T, O> TryInto<ListTagged<T, O>> for TracedObject
Source§type Error = CryptError
type Error = CryptError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl<T, O> Freeze for ListTagged<T, O>
impl<T, O> RefUnwindSafe for ListTagged<T, O>
impl<T, O> Send for ListTagged<T, O>
impl<T, O> Sync for ListTagged<T, O>
impl<T, O> Unpin for ListTagged<T, O>
impl<T, O> UnsafeUnpin for ListTagged<T, O>
impl<T, O> UnwindSafe for ListTagged<T, O>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Cryptic for T
impl<T> Cryptic for T
Source§fn cryptic(object: TracedObject) -> Result<T, CryptError>
fn cryptic(object: TracedObject) -> Result<T, CryptError>
Attempts to convert an AST from a crypt file into a desired type. Read more