1 2 3 4 5 6 7 8 9 10
use crate::localsend_proto::dto::FileDto; use crate::localsend_lib::send::FileStatus; #[derive(Debug, Clone)] pub struct ReceivingFile { pub file: FileDto, pub status: FileStatus, pub token: Option<String>, }