pub struct StationKey {
pub network: String,
pub station: String,
}Expand description
Network + station identifier used as a key for sequence tracking.
Fields§
§network: StringFDSN network code (e.g., "IU").
station: StringStation code (e.g., "ANMO").
Trait Implementations§
Source§impl Clone for StationKey
impl Clone for StationKey
Source§fn clone(&self) -> StationKey
fn clone(&self) -> StationKey
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 StationKey
impl Debug for StationKey
Source§impl Hash for StationKey
impl Hash for StationKey
Source§impl PartialEq for StationKey
impl PartialEq for StationKey
impl Eq for StationKey
impl StructuralPartialEq for StationKey
Auto Trait Implementations§
impl Freeze for StationKey
impl RefUnwindSafe for StationKey
impl Send for StationKey
impl Sync for StationKey
impl Unpin for StationKey
impl UnwindSafe for StationKey
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