pub struct RealtimeBatchInfo {
pub identifier: String,
pub name: String,
pub version: String,
pub in_language: Language,
pub is_part_of: ProjectInfo,
pub namespace: Namespace,
pub size: Size,
}Expand description
Realtime batch info (hourly batches).
Metadata for hourly batch files available through the Realtime API.
Fields§
§identifier: StringBatch identifier
name: StringBatch name
version: StringBatch version
in_language: LanguageLanguage information
is_part_of: ProjectInfoProject this batch belongs to
namespace: NamespaceNamespace information
size: SizeBatch size information
Trait Implementations§
Source§impl Clone for RealtimeBatchInfo
impl Clone for RealtimeBatchInfo
Source§fn clone(&self) -> RealtimeBatchInfo
fn clone(&self) -> RealtimeBatchInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RealtimeBatchInfo
impl Debug for RealtimeBatchInfo
Source§impl<'de> Deserialize<'de> for RealtimeBatchInfo
impl<'de> Deserialize<'de> for RealtimeBatchInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RealtimeBatchInfo
impl PartialEq for RealtimeBatchInfo
Source§impl Serialize for RealtimeBatchInfo
impl Serialize for RealtimeBatchInfo
impl StructuralPartialEq for RealtimeBatchInfo
Auto Trait Implementations§
impl Freeze for RealtimeBatchInfo
impl RefUnwindSafe for RealtimeBatchInfo
impl Send for RealtimeBatchInfo
impl Sync for RealtimeBatchInfo
impl Unpin for RealtimeBatchInfo
impl UnsafeUnpin for RealtimeBatchInfo
impl UnwindSafe for RealtimeBatchInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more