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:
Sebastian Dröge 2020-04-24 12:46:16 +03:00
parent 020e2a4464
commit 6e431ce060
3 changed files with 18 additions and 15 deletions

View file

@ -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> {

View file

@ -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> {

View file

@ -1339,7 +1339,7 @@ macro_rules! message_builder_generic_impl {
from_glib_full(msg)
}
}
}
};
}
pub struct EosBuilder<'a> {