pub struct SstFile<C> { /* private fields */ }Expand description
A parsed SST file.
Implementations§
Source§impl<C> SstFile<C>
impl<C> SstFile<C>
pub fn context(&self) -> &C
pub fn context_handle(&self) -> ContextHandle<C>
Sourcepub fn root(&self) -> SstSectionView<'_, C>
pub fn root(&self) -> SstSectionView<'_, C>
The view of the root of the SST section tree.
Trait Implementations§
Auto Trait Implementations§
impl<C> Freeze for SstFile<C>
impl<C> RefUnwindSafe for SstFile<C>where
C: RefUnwindSafe,
impl<C> Send for SstFile<C>
impl<C> Sync for SstFile<C>
impl<C> Unpin for SstFile<C>
impl<C> UnsafeUnpin for SstFile<C>
impl<C> UnwindSafe for SstFile<C>where
C: RefUnwindSafe,
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,
§impl<'src, T> IntoMaybe<'src, T> for Twhere
T: 'src,
impl<'src, T> IntoMaybe<'src, T> for Twhere
T: 'src,
§impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
§type Iter<'a> = Once<&'a T>
where
T: 'a
type Iter<'a> = Once<&'a T> where T: 'a
An iterator over the items within this container, by reference.
§fn contains(&self, val: &T) -> boolwhere
T: PartialEq,
fn contains(&self, val: &T) -> boolwhere
T: PartialEq,
Check whether an item is contained within this sequence.
§fn to_maybe_ref<'b>(item: <T as Seq<'p, T>>::Item<'b>) -> Maybe<T, &'p T>where
'p: 'b,
fn to_maybe_ref<'b>(item: <T as Seq<'p, T>>::Item<'b>) -> Maybe<T, &'p T>where
'p: 'b,
Convert an item of the sequence into a [
MaybeRef].