1 2 3 4 5 6 7 8
use ribir_core::prelude::*; pub struct Label(pub PipeValue<CowArc<str>>); impl Label { #[inline] pub fn new<K: ?Sized>(str: impl RInto<PipeValue<CowArc<str>>, K>) -> Self { Self(str.r_into()) } }