pub struct FactView<'a> {
pub record: FactRecord,
pub text: &'a str,
}Expand description
A read view of one fact.
Fields§
§record: FactRecordThe raw record (temporality, flags, references).
text: &'a strThe fact text.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FactView<'a>
impl<'a> RefUnwindSafe for FactView<'a>
impl<'a> Send for FactView<'a>
impl<'a> Sync for FactView<'a>
impl<'a> Unpin for FactView<'a>
impl<'a> UnsafeUnpin for FactView<'a>
impl<'a> UnwindSafe for FactView<'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