pub type WindowCallback = Arc<Box<fn(_: &mut Window), Global>, Global>;
struct WindowCallback { /* private fields */ }
Creates a new Arc<T>, with the Default value for T.
Arc<T>
Default
T
use std::sync::Arc; let x: Arc<i32> = Default::default(); assert_eq!(*x, 0);