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