Skip to main content

ToGlobal

Trait ToGlobal 

Source
pub trait ToGlobal<Dst: GlobalBackend>: HasBackend {
    type Output;

    // Required method
    fn to_global(&self) -> Result<Self::Output, CopyError>;
}

Required Associated Types§

Required Methods§

Source

fn to_global(&self) -> Result<Self::Output, CopyError>

Implementors§

Source§

impl<T, Dst: GlobalBackend> ToGlobal<Dst> for T
where T: HasBackend, T::Backend: CanCopyIntoRef<T, Dst>,