Skip to content

Commit

Permalink
Add missing Clone for Destination (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-zen authored Nov 5, 2023
1 parent bdc9715 commit 52c40ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/endpoints/destinations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use crate::Object;
/// println!("The source at index 0 has display name '{}'", source.display_name().unwrap());
/// ```
///
#[derive(Debug, Hash, Eq, PartialEq)]
#[derive(Debug, Clone, Hash, Eq, PartialEq)]
pub struct Destination {
pub(crate) endpoint: Endpoint,
}
Expand Down

0 comments on commit 52c40ab

Please sign in to comment.