use crate::types::*;
use crate::errors::*;
use uuid::Uuid;
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct LocalFile {
#[doc(hidden)]
#[serde(rename(serialize = "@type", deserialize = "@type"))]
td_name: String,
#[doc(hidden)]
#[serde(rename(serialize = "@extra", deserialize = "@extra"))]
extra: Option<String>,
path: String,
can_be_downloaded: bool,
can_be_deleted: bool,
is_downloading_active: bool,
is_downloading_completed: bool,
download_offset: i64,
downloaded_prefix_size: i64,
downloaded_size: i64,
}
impl RObject for LocalFile {
#[doc(hidden)] fn td_name(&self) -> &'static str { "localFile" }
#[doc(hidden)] fn extra(&self) -> Option<String> { self.extra.clone() }
fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}
impl LocalFile {
pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
pub fn builder() -> RTDLocalFileBuilder {
let mut inner = LocalFile::default();
inner.td_name = "localFile".to_string();
inner.extra = Some(Uuid::new_v4().to_string());
RTDLocalFileBuilder { inner }
}
pub fn path(&self) -> &String { &self.path }
pub fn can_be_downloaded(&self) -> bool { self.can_be_downloaded }
pub fn can_be_deleted(&self) -> bool { self.can_be_deleted }
pub fn is_downloading_active(&self) -> bool { self.is_downloading_active }
pub fn is_downloading_completed(&self) -> bool { self.is_downloading_completed }
pub fn download_offset(&self) -> i64 { self.download_offset }
pub fn downloaded_prefix_size(&self) -> i64 { self.downloaded_prefix_size }
pub fn downloaded_size(&self) -> i64 { self.downloaded_size }
}
#[doc(hidden)]
pub struct RTDLocalFileBuilder {
inner: LocalFile
}
impl RTDLocalFileBuilder {
pub fn build(&self) -> LocalFile { self.inner.clone() }
pub fn path<T: AsRef<str>>(&mut self, path: T) -> &mut Self {
self.inner.path = path.as_ref().to_string();
self
}
pub fn can_be_downloaded(&mut self, can_be_downloaded: bool) -> &mut Self {
self.inner.can_be_downloaded = can_be_downloaded;
self
}
pub fn can_be_deleted(&mut self, can_be_deleted: bool) -> &mut Self {
self.inner.can_be_deleted = can_be_deleted;
self
}
pub fn is_downloading_active(&mut self, is_downloading_active: bool) -> &mut Self {
self.inner.is_downloading_active = is_downloading_active;
self
}
pub fn is_downloading_completed(&mut self, is_downloading_completed: bool) -> &mut Self {
self.inner.is_downloading_completed = is_downloading_completed;
self
}
pub fn download_offset(&mut self, download_offset: i64) -> &mut Self {
self.inner.download_offset = download_offset;
self
}
pub fn downloaded_prefix_size(&mut self, downloaded_prefix_size: i64) -> &mut Self {
self.inner.downloaded_prefix_size = downloaded_prefix_size;
self
}
pub fn downloaded_size(&mut self, downloaded_size: i64) -> &mut Self {
self.inner.downloaded_size = downloaded_size;
self
}
}
impl AsRef<LocalFile> for LocalFile {
fn as_ref(&self) -> &LocalFile { self }
}
impl AsRef<LocalFile> for RTDLocalFileBuilder {
fn as_ref(&self) -> &LocalFile { &self.inner }
}