mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-25 19:11:06 +00:00
Derive Clone on ErrorMessage
This commit is contained in:
parent
9066cf0634
commit
15ea81e473
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ macro_rules! gst_error_msg(
|
|||
}};
|
||||
);
|
||||
|
||||
#[derive(Debug, PartialEq, Eq)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct ErrorMessage {
|
||||
pub(crate) error_domain: glib_ffi::GQuark,
|
||||
pub(crate) error_code: i32,
|
||||
|
|
Loading…
Reference in a new issue