Run everything through cargo fmt again

This commit is contained in:
Sebastian Dröge 2020-04-30 11:01:25 +03:00
parent ef012b9445
commit 451c198cec
3 changed files with 18 additions and 15 deletions

View file

@ -29,23 +29,26 @@ macro_rules! event_builder_generic_impl {
pub fn seqnum(self, seqnum: gst::Seqnum) -> Self { pub fn seqnum(self, seqnum: gst::Seqnum) -> Self {
Self { Self {
seqnum: Some(seqnum), seqnum: Some(seqnum),
.. self ..self
} }
} }
pub fn running_time_offset(self, running_time_offset: i64) -> Self { pub fn running_time_offset(self, running_time_offset: i64) -> Self {
Self { Self {
running_time_offset: Some(running_time_offset), running_time_offset: Some(running_time_offset),
.. self ..self
} }
} }
pub fn other_fields(self, other_fields: &[(&'a str, &'a dyn ToSendValue)]) -> Self { pub fn other_fields(self, other_fields: &[(&'a str, &'a dyn ToSendValue)]) -> Self {
Self { Self {
other_fields: self.other_fields.iter().cloned() other_fields: self
.other_fields
.iter()
.cloned()
.chain(other_fields.iter().cloned()) .chain(other_fields.iter().cloned())
.collect(), .collect(),
.. self ..self
} }
} }
@ -63,7 +66,7 @@ macro_rules! event_builder_generic_impl {
{ {
let s = gst::StructureRef::from_glib_borrow_mut( 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 { for (k, v) in self.other_fields {
@ -74,7 +77,7 @@ macro_rules! event_builder_generic_impl {
from_glib_full(event) from_glib_full(event)
} }
} }
} };
} }
pub fn new_downstream_force_key_unit_event<'a>() -> DownstreamForceKeyUnitEventBuilder<'a> { pub fn new_downstream_force_key_unit_event<'a>() -> DownstreamForceKeyUnitEventBuilder<'a> {

View file

@ -975,7 +975,7 @@ macro_rules! event_builder_generic_impl {
pub fn seqnum(self, seqnum: Seqnum) -> Self { pub fn seqnum(self, seqnum: Seqnum) -> Self {
Self { Self {
builder: self.builder.seqnum(seqnum), builder: self.builder.seqnum(seqnum),
.. self ..self
} }
} }
@ -983,7 +983,7 @@ macro_rules! event_builder_generic_impl {
pub fn running_time_offset(self, running_time_offset: i64) -> Self { pub fn running_time_offset(self, running_time_offset: i64) -> Self {
Self { Self {
builder: self.builder.running_time_offset(running_time_offset), builder: self.builder.running_time_offset(running_time_offset),
.. self ..self
} }
} }
@ -991,7 +991,7 @@ macro_rules! event_builder_generic_impl {
pub fn other_fields(self, other_fields: &[(&'a str, &'a dyn ToSendValue)]) -> Self { pub fn other_fields(self, other_fields: &[(&'a str, &'a dyn ToSendValue)]) -> Self {
Self { Self {
builder: self.builder.other_fields(other_fields), builder: self.builder.other_fields(other_fields),
.. self ..self
} }
} }
@ -1009,7 +1009,7 @@ macro_rules! event_builder_generic_impl {
if !self.builder.other_fields.is_empty() { if !self.builder.other_fields.is_empty() {
let s = StructureRef::from_glib_borrow_mut( 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 { for (k, v) in self.builder.other_fields {
@ -1020,7 +1020,7 @@ macro_rules! event_builder_generic_impl {
from_glib_full(event) from_glib_full(event)
} }
} }
} };
} }
pub struct FlushStartBuilder<'a> { pub struct FlushStartBuilder<'a> {

View file

@ -1281,7 +1281,7 @@ macro_rules! message_builder_generic_impl {
pub fn src<O: IsA<Object> + Cast + Clone>(self, src: Option<&O>) -> Self { pub fn src<O: IsA<Object> + Cast + Clone>(self, src: Option<&O>) -> Self {
Self { Self {
builder: self.builder.src(src), builder: self.builder.src(src),
.. self ..self
} }
} }
@ -1289,7 +1289,7 @@ macro_rules! message_builder_generic_impl {
pub fn seqnum(self, seqnum: Seqnum) -> Self { pub fn seqnum(self, seqnum: Seqnum) -> Self {
Self { Self {
builder: self.builder.seqnum(seqnum), builder: self.builder.seqnum(seqnum),
.. self ..self
} }
} }
@ -1298,7 +1298,7 @@ macro_rules! message_builder_generic_impl {
pub fn other_fields(self, other_fields: &[(&'a str, &'a dyn ToSendValue)]) -> Self { pub fn other_fields(self, other_fields: &[(&'a str, &'a dyn ToSendValue)]) -> Self {
Self { Self {
builder: self.builder.other_fields(other_fields), builder: self.builder.other_fields(other_fields),
.. self ..self
} }
} }
@ -1329,7 +1329,7 @@ macro_rules! message_builder_generic_impl {
from_glib_full(msg) from_glib_full(msg)
} }
} }
} };
} }
pub struct EosBuilder<'a> { pub struct EosBuilder<'a> {