pub async fn copy_data<'d, S: CopySourceFactory, D: CopyDestinationFactory<'d>>(
source: &S,
destination: &'d mut D,
options: CopyDataOptions,
) -> Result<()>Expand description
Copies data and structures from the provided source to the destination.
This is probably the main function you want to deal with when using Elefant Tools as a library.