-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add sequencer attachment #6
Conversation
@@ -135,6 +139,42 @@ | |||
Ok(SpillLog { records }) | |||
} | |||
|
|||
#[derive(Debug, Deserialize)] | |||
struct SequencerRecord { |
Check failure
Code scanning / clippy
fields serial_number, midas_timestamp, header, and xml are never read Error
@@ -135,6 +139,42 @@ | |||
Ok(SpillLog { records }) | |||
} | |||
|
|||
#[derive(Debug, Deserialize)] | |||
struct SequencerRecord { |
Check failure
Code scanning / clippy
fields serial_number, midas_timestamp, header, and xml are never read Error
@@ -135,6 +139,42 @@ | |||
Ok(SpillLog { records }) | |||
} | |||
|
|||
#[derive(Debug, Deserialize)] | |||
struct SequencerRecord { | |||
serial_number: u32, |
Check failure
Code scanning / clippy
fields serial_number, midas_timestamp, header, and xml are never read Error
@@ -135,6 +139,42 @@ | |||
Ok(SpillLog { records }) | |||
} | |||
|
|||
#[derive(Debug, Deserialize)] | |||
struct SequencerRecord { | |||
serial_number: u32, |
Check failure
Code scanning / clippy
fields serial_number, midas_timestamp, header, and xml are never read Error
#[derive(Debug, Deserialize)] | ||
struct SequencerRecord { | ||
serial_number: u32, | ||
midas_timestamp: u32, |
Check failure
Code scanning / clippy
fields serial_number, midas_timestamp, header, and xml are never read Error
#[derive(Debug, Deserialize)] | ||
struct SequencerRecord { | ||
serial_number: u32, | ||
midas_timestamp: u32, |
Check failure
Code scanning / clippy
fields serial_number, midas_timestamp, header, and xml are never read Error
serial_number: u32, | ||
midas_timestamp: u32, | ||
header: String, | ||
xml: String, |
Check failure
Code scanning / clippy
fields serial_number, midas_timestamp, header, and xml are never read Error
serial_number: u32, | ||
midas_timestamp: u32, | ||
header: String, | ||
xml: String, |
Check failure
Code scanning / clippy
fields serial_number, midas_timestamp, header, and xml are never read Error
} | ||
elog_entry.text.push_str("\n"); |
Check failure
Code scanning / clippy
calling push_str() using a single-character string literal Error
} | ||
elog_entry.text.push_str("\n"); |
Check failure
Code scanning / clippy
calling push_str() using a single-character string literal Error
No description provided.