chore: remove unused module (#2102)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
Raphael Taylor-Davies 2021-07-26 12:02:20 +01:00 committed by GitHub
parent 427c5743f3
commit 4f8b2fdb69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
/// The persistence metadata associated with a given segment
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct SegmentPersistence {
pub location: String,
pub time: DateTime<Utc>,
}
/// The summary information for a segment
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct SegmentSummary {
pub size: u64,
pub created_at: DateTime<Utc>,
pub persisted: Option<SegmentPersistence>,
}