satrs_core/cfdp/source.rs
1#![allow(dead_code)]
2use spacepackets::util::UnsignedByteField;
3
4pub struct SourceHandler {
5 id: UnsignedByteField,
6}
7
8impl SourceHandler {
9 pub fn new(id: impl Into<UnsignedByteField>) -> Self {
10 Self { id: id.into() }
11 }
12}
13
14#[cfg(test)]
15mod tests {}