Home
last modified time | relevance | path

Searched refs:try_new (Results 1 – 3 of 3) sorted by relevance

/linux-6.6.21/samples/rust/
Drust_print.rs21 let a = Arc::try_new(1)?; in arc_print()
22 let b = UniqueArc::try_new("hello, world")?; in arc_print()
/linux-6.6.21/rust/kernel/sync/
Darc.rs165 pub fn try_new(contents: T) -> Result<Self, AllocError> { in try_new() method
173 let inner = Box::try_new(value)?; in try_new()
519 pub fn try_new(value: T) -> Result<Self, AllocError> { in try_new() method
522 inner: Arc::try_new(value)?, in try_new()
/linux-6.6.21/rust/alloc/
Dboxed.rs306 pub fn try_new(x: T) -> Result<Self, AllocError> { in try_new() method