pub enum ValueDebugFormatString<'a> {
Sync(String),
Async(Pin<Box<dyn Future<Output = Result<String>> + Send + 'a>>),
}
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(Pin<Box<dyn Future<Output = Result<String>> + Send + 'a>>)
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.
Sourcepub async fn try_to_value_debug_string(self) -> Result<Vc<ValueDebugString>>
pub async fn try_to_value_debug_string(self) -> Result<Vc<ValueDebugString>>
Convert the ValueDebugFormatString
into a Vc<ValueDebugString>
.
This can fail when resolving Vc
types.
Auto Trait Implementations§
impl<'a> Freeze for ValueDebugFormatString<'a>
impl<'a> !RefUnwindSafe for ValueDebugFormatString<'a>
impl<'a> Send for ValueDebugFormatString<'a>
impl<'a> !Sync for ValueDebugFormatString<'a>
impl<'a> Unpin for ValueDebugFormatString<'a>
impl<'a> !UnwindSafe for ValueDebugFormatString<'a>
Blanket Implementations§
§impl<T> Any for Twhere
T: Any,
impl<T> Any for Twhere
T: Any,
fn get_type_id(&self) -> TypeId
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>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> 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