sat-rs/satrs-core/src/cfdp/source.rs

17 lines
238 B
Rust
Raw Normal View History

2023-09-10 21:11:44 +02:00
use spacepackets::util::UnsignedByteField;
pub struct SourceHandler {
id: UnsignedByteField,
}
impl SourceHandler {
pub fn new(id: impl Into<UnsignedByteField>) -> Self {
Self { id }
}
}
#[cfg(test)]
mod tests {
}