pub struct RawProgramLog<'a> {
pub raw: &'a str,
pub msg: &'a str,
}
Expand description
A Raw Program Log
Program log: <msg>
Fields§
§raw: &'a str
§msg: &'a str
Trait Implementations§
Source§impl<'a> Clone for RawProgramLog<'a>
impl<'a> Clone for RawProgramLog<'a>
Source§fn clone(&self) -> RawProgramLog<'a>
fn clone(&self) -> RawProgramLog<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for RawProgramLog<'a>
impl<'a> Debug for RawProgramLog<'a>
Source§impl<'a> PartialEq for RawProgramLog<'a>
impl<'a> PartialEq for RawProgramLog<'a>
impl<'a> Eq for RawProgramLog<'a>
impl<'a> StructuralPartialEq for RawProgramLog<'a>
Auto Trait Implementations§
impl<'a> Freeze for RawProgramLog<'a>
impl<'a> RefUnwindSafe for RawProgramLog<'a>
impl<'a> Send for RawProgramLog<'a>
impl<'a> Sync for RawProgramLog<'a>
impl<'a> Unpin for RawProgramLog<'a>
impl<'a> UnwindSafe for RawProgramLog<'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