Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/srv/desktop/rdp/rdpclient/src/rdpdr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ impl TeleportRdpdrBackend {
}

/// A generic error type for the TeleportRdpdrBackend that can contain any arbitrary error message.
#[allow(dead_code)]
#[derive(Debug)]
pub struct TeleportRdpdrBackendError(pub String);

Expand Down
1 change: 1 addition & 0 deletions lib/srv/desktop/rdp/rdpclient/src/rdpdr/path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ fn crop_first_n_letters(s: &mut String, n: usize) {
}
}

#[allow(dead_code)]
#[derive(Debug)]
pub struct PathError(pub String);

Expand Down
1 change: 1 addition & 0 deletions lib/srv/desktop/rdp/rdpclient/src/rdpdr/tdp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ pub(crate) fn to_windows_time(tdp_time_ms: u64) -> i64 {
/// A generic error type that can contain any arbitrary error message.
///
/// TODO: This is a temporary solution until we can figure out a better error handling system.
#[allow(dead_code)]
#[derive(Debug)]
pub struct TdpHandlingError(pub String);

Expand Down