mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-02-18 03:55:36 +00:00
Run everything through rustfmt again
It got some improvements for applying consistent formatting to code blocks in macros. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/468>
This commit is contained in:
parent
020e2a4464
commit
6e431ce060
3 changed files with 18 additions and 15 deletions
|
@ -43,7 +43,10 @@ macro_rules! event_builder_generic_impl {
|
|||
|
||||
pub fn other_fields(self, other_fields: &[(&'a str, &'a dyn ToSendValue)]) -> Self {
|
||||
Self {
|
||||
other_fields: self.other_fields.iter().cloned()
|
||||
other_fields: self
|
||||
.other_fields
|
||||
.iter()
|
||||
.cloned()
|
||||
.chain(other_fields.iter().cloned())
|
||||
.collect(),
|
||||
..self
|
||||
|
@ -64,7 +67,7 @@ macro_rules! event_builder_generic_impl {
|
|||
|
||||
{
|
||||
let s = gst::StructureRef::from_glib_borrow_mut(
|
||||
gst_sys::gst_event_writable_structure(event)
|
||||
gst_sys::gst_event_writable_structure(event),
|
||||
);
|
||||
|
||||
for (k, v) in self.other_fields {
|
||||
|
@ -75,7 +78,7 @@ macro_rules! event_builder_generic_impl {
|
|||
from_glib_full(event)
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
pub fn new_downstream_force_key_unit_event<'a>() -> DownstreamForceKeyUnitEventBuilder<'a> {
|
||||
|
|
|
@ -999,7 +999,7 @@ macro_rules! event_builder_generic_impl {
|
|||
|
||||
if !self.builder.other_fields.is_empty() {
|
||||
let s = StructureRef::from_glib_borrow_mut(
|
||||
gst_sys::gst_event_writable_structure(event)
|
||||
gst_sys::gst_event_writable_structure(event),
|
||||
);
|
||||
|
||||
for (k, v) in self.builder.other_fields {
|
||||
|
@ -1010,7 +1010,7 @@ macro_rules! event_builder_generic_impl {
|
|||
from_glib_full(event)
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
pub struct FlushStartBuilder<'a> {
|
||||
|
|
|
@ -1339,7 +1339,7 @@ macro_rules! message_builder_generic_impl {
|
|||
from_glib_full(msg)
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
pub struct EosBuilder<'a> {
|
||||
|
|
Loading…
Reference in a new issue