impl crate::Debug for dashmap::TryReserveError {
fn fmt(&self, f: &mut crate::Formatter) {
f.debug_struct("TryReserveError").finish()
}
}
impl<'a, K, V, S> crate::Debug for dashmap::mapref::entry::Entry<'a, K, V, S>
where
dashmap::mapref::entry::OccupiedEntry<'a, K, V, S>: crate::Debug,
dashmap::mapref::entry::VacantEntry<'a, K, V, S>: crate::Debug,
{
fn fmt(&self, f: &mut crate::Formatter) {
match self {
Self::Occupied(__0) => {
f.debug_tuple("Occupied").field(__0).finish();
}
Self::Vacant(__0) => {
f.debug_tuple("Vacant").field(__0).finish();
}
}
}
}
impl<R> crate::Debug for dashmap::try_result::TryResult<R>
where
R: crate::Debug,
{
fn fmt(&self, f: &mut crate::Formatter) {
match self {
Self::Present(__0) => {
f.debug_tuple("Present").field(__0).finish();
}
Self::Absent => {
f.debug_tuple("Absent").finish();
}
Self::Locked => {
f.debug_tuple("Locked").finish();
}
}
}
}