本文簡要介紹rust語言中 alloc::rc::Rc.downcast
的用法。
用法
pub fn downcast<T: Any>(self) -> Result<Rc<T>, Rc<dyn Any>>
嘗試將 Rc<dyn Any>
向下轉換為具體類型。
例子
use std::any::Any;
use std::rc::Rc;
fn print_if_string(value: Rc<dyn Any>) {
if let Ok(string) = value.downcast::<String>() {
println!("String ({}): {}", string.len(), string);
}
}
let my_string = "Hello World".to_string();
print_if_string(Rc::new(my_string));
print_if_string(Rc::new(0i8));
相關用法
- Rust Rc.downgrade用法及代碼示例
- Rust Rc.decrement_strong_count用法及代碼示例
- Rust Rc.increment_strong_count用法及代碼示例
- Rust Rc.as_ptr用法及代碼示例
- Rust Rc.make_mut用法及代碼示例
- Rust Rc.new_zeroed用法及代碼示例
- Rust Rc.new_cyclic用法及代碼示例
- Rust Rc.new_zeroed_slice用法及代碼示例
- Rust Rc.ptr_eq用法及代碼示例
- Rust Rc.weak_count用法及代碼示例
- Rust Rc.try_unwrap用法及代碼示例
- Rust Rc.try_new_uninit用法及代碼示例
- Rust Rc.new_uninit用法及代碼示例
- Rust Rc.into_raw用法及代碼示例
- Rust Rc.try_new用法及代碼示例
- Rust Rc.new_uninit_slice用法及代碼示例
- Rust Rc.assume_init用法及代碼示例
- Rust Rc.get_mut_unchecked用法及代碼示例
- Rust Rc.from_raw用法及代碼示例
- Rust Rc.new用法及代碼示例
- Rust Rc.get_mut用法及代碼示例
- Rust Rc.strong_count用法及代碼示例
- Rust Rc.try_new_zeroed用法及代碼示例
- Rust Result.unwrap_or_else用法及代碼示例
- Rust RefCell.try_borrow_unguarded用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 alloc::rc::Rc.downcast。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。