Skip to main content

IntoGlobal

Trait IntoGlobal 

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

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

Required Associated Types§

Required Methods§

Implementors§

Source§

impl<T, Dst: GlobalBackend> IntoGlobal<Dst> for T
where T: HasBackend, T::Backend: CanCopyInto<T, Dst>,

Source§

type Output = <<T as HasBackend>::Backend as CanCopyInto<T, Dst>>::Output