pub enum ValueDebugFormatString<'a> {
Sync(String),
Async(BoxFuture<'a, Result<String>>),
}Expand description
Output of ValueDebugFormat::value_debug_format.
Variants§
Sync(String)
For the T: Debug fallback implementation, we can output a string
directly as the result of format!("{:?}", t).
Async(BoxFuture<'a, Result<String>>)
For the Vc types and Vc-containing types implementations, we need to
resolve types asynchronously before we can format them, hence the need
for a future.
Implementations§
Source§impl ValueDebugFormatString<'_>
impl ValueDebugFormatString<'_>
Sourcepub async fn try_to_string(self) -> Result<String>
pub async fn try_to_string(self) -> Result<String>
Convert the ValueDebugFormatString into a String.
This can fail when resolving Vc types.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for ValueDebugFormatString<'a>
impl<'a> !Sync for ValueDebugFormatString<'a>
impl<'a> !UnwindSafe for ValueDebugFormatString<'a>
impl<'a> Freeze for ValueDebugFormatString<'a>
impl<'a> Send for ValueDebugFormatString<'a>
impl<'a> Unpin for ValueDebugFormatString<'a>
impl<'a> UnsafeUnpin for ValueDebugFormatString<'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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more