pub struct DumpRef<'a>(/* private fields */);
Expand description
Reference to a deserialized Dump.
Implementations§
Source§impl<'a> DumpRef<'a>
impl<'a> DumpRef<'a>
Sourcepub fn params(&self) -> Result<ParamsRef<'a>>
pub fn params(&self) -> Result<ParamsRef<'a>>
Getter for the params
field.
Sourcepub fn score(&self) -> Result<u8>
pub fn score(&self) -> Result<u8>
Getter for the score
field.
Sourcepub fn rtx_stream(&self) -> Result<Option<RtxDumpRef<'a>>>
pub fn rtx_stream(&self) -> Result<Option<RtxDumpRef<'a>>>
Getter for the rtx_stream
field.
Trait Implementations§
Source§impl<'a> ReadAsRoot<'a> for DumpRef<'a>
impl<'a> ReadAsRoot<'a> for DumpRef<'a>
impl<'a> Copy for DumpRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for DumpRef<'a>
impl<'a> RefUnwindSafe for DumpRef<'a>
impl<'a> Send for DumpRef<'a>
impl<'a> Sync for DumpRef<'a>
impl<'a> Unpin for DumpRef<'a>
impl<'a> UnwindSafe for DumpRef<'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