File size: 213 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
use turbo_rcstr::RcStr;
use turbo_tasks::Vc;
use crate::{self as turbo_tasks};
#[turbo_tasks::value_trait]
pub trait ValueToString {
#[turbo_tasks::function]
fn to_string(self: Vc<Self>) -> Vc<RcStr>;
}
|