ExportData → ExchangeData

This commit is contained in:
RumovZ 2022-03-31 12:53:36 +02:00
parent 71670a065d
commit fbc21da913
3 changed files with 6 additions and 6 deletions

View file

@ -18,7 +18,7 @@ use crate::{
};
#[derive(Debug, Default)]
pub(super) struct ExportData {
pub(super) struct ExchangeData {
pub(super) decks: Vec<Deck>,
pub(super) notes: Vec<Note>,
pub(super) cards: Vec<Card>,
@ -28,7 +28,7 @@ pub(super) struct ExportData {
pub(super) media_paths: HashSet<PathBuf>,
}
impl ExportData {
impl ExchangeData {
pub(super) fn gather_data(
&mut self,
col: &mut Collection,

View file

@ -1,11 +1,11 @@
// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
use super::gather::ExportData;
use super::gather::ExchangeData;
use crate::{prelude::*, revlog::RevlogEntry};
impl Collection {
pub(super) fn insert_data(&mut self, data: &ExportData) -> Result<()> {
pub(super) fn insert_data(&mut self, data: &ExchangeData) -> Result<()> {
self.insert_decks(&data.decks)?;
self.insert_notes(&data.notes)?;
self.insert_cards(&data.cards)?;

View file

@ -11,7 +11,7 @@ use tempfile::NamedTempFile;
use crate::{
collection::CollectionBuilder,
import_export::{
gather::ExportData,
gather::ExchangeData,
package::{
colpkg::export::{export_collection, MediaIter},
Meta,
@ -70,7 +70,7 @@ impl Collection {
with_scheduling: bool,
with_media: bool,
) -> Result<HashSet<PathBuf>> {
let mut data = ExportData::default();
let mut data = ExchangeData::default();
data.gather_data(self, search, with_scheduling)?;
if with_media {
data.gather_media_paths();