pub struct RoundTripResult {
pub ok: bool,
pub source: String,
pub round_tripped: String,
}Expand description
Result of a round-trip check.
Fields§
§ok: bool§source: String§round_tripped: StringAuto Trait Implementations§
impl Freeze for RoundTripResult
impl RefUnwindSafe for RoundTripResult
impl Send for RoundTripResult
impl Sync for RoundTripResult
impl Unpin for RoundTripResult
impl UnsafeUnpin for RoundTripResult
impl UnwindSafe for RoundTripResult
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