This commit is contained in:
François Laignel 2019-08-10 19:32:57 +02:00
parent 3cf034d94b
commit 5d012945df
60 changed files with 452 additions and 132 deletions

View file

@ -150,7 +150,10 @@ impl AppSink {
b"buffer-list\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `buffer-list` getter")
.unwrap()
}
}
@ -172,7 +175,10 @@ impl AppSink {
b"eos\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `eos` getter")
.unwrap()
}
}

View file

@ -113,7 +113,10 @@ impl AppSrc {
b"block\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `block` getter")
.unwrap()
}
}
@ -135,7 +138,10 @@ impl AppSrc {
b"duration\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `duration` getter")
.unwrap()
}
}
@ -157,7 +163,10 @@ impl AppSrc {
b"format\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `format` getter")
.unwrap()
}
}
@ -179,7 +188,10 @@ impl AppSrc {
b"is-live\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `is-live` getter")
.unwrap()
}
}
@ -201,7 +213,10 @@ impl AppSrc {
b"max-latency\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `max-latency` getter")
.unwrap()
}
}
@ -223,7 +238,10 @@ impl AppSrc {
b"min-latency\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `min-latency` getter")
.unwrap()
}
}
@ -245,7 +263,10 @@ impl AppSrc {
b"min-percent\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `min-percent` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -126,7 +126,10 @@ impl<O: IsA<Aggregator>> AggregatorExt for O {
b"start-time\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `start-time` getter")
.unwrap()
}
}

View file

@ -122,7 +122,10 @@ impl<O: IsA<AggregatorPad>> AggregatorPadExt for O {
b"emit-signals\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `emit-signals` getter")
.unwrap()
}
}

View file

@ -182,7 +182,10 @@ impl<O: IsA<BaseParse>> BaseParseExt for O {
b"disable-passthrough\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `disable-passthrough` getter")
.unwrap()
}
}

View file

@ -400,7 +400,10 @@ impl<O: IsA<BaseSink>> BaseSinkExt for O {
b"async\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `async` getter")
.unwrap()
}
}
@ -422,7 +425,10 @@ impl<O: IsA<BaseSink>> BaseSinkExt for O {
b"enable-last-sample\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `enable-last-sample` getter")
.unwrap()
}
}
@ -444,7 +450,10 @@ impl<O: IsA<BaseSink>> BaseSinkExt for O {
b"qos\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `qos` getter")
.unwrap()
}
}

View file

@ -242,7 +242,10 @@ impl<O: IsA<BaseSrc>> BaseSrcExt for O {
b"num-buffers\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `num-buffers` getter")
.unwrap()
}
}
@ -264,7 +267,10 @@ impl<O: IsA<BaseSrc>> BaseSrcExt for O {
b"typefind\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `typefind` getter")
.unwrap()
}
}

View file

@ -194,7 +194,10 @@ impl<O: IsA<BaseTransform>> BaseTransformExt for O {
b"qos\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `qos` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -111,7 +111,10 @@ impl TestClock {
b"clock-type\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `clock-type` getter")
.unwrap()
}
}
@ -133,7 +136,10 @@ impl TestClock {
b"start-time\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `start-time` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -145,7 +145,10 @@ impl<O: IsA<Container>> GESContainerExt for O {
b"height\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `height` getter")
.unwrap()
}
}

View file

@ -44,7 +44,9 @@ impl<O: IsA<Effect>> EffectExt for O {
b"bin-description\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `bin-description` getter")
}
}
}

View file

@ -83,7 +83,10 @@ impl<O: IsA<Group>> GroupExt for O {
b"duration\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `duration` getter")
.unwrap()
}
}
@ -105,7 +108,10 @@ impl<O: IsA<Group>> GroupExt for O {
b"in-point\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `in-point` getter")
.unwrap()
}
}
@ -127,7 +133,10 @@ impl<O: IsA<Group>> GroupExt for O {
b"max-duration\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `max-duration` getter")
.unwrap()
}
}
@ -149,7 +158,10 @@ impl<O: IsA<Group>> GroupExt for O {
b"priority\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `priority` getter")
.unwrap()
}
}
@ -171,7 +183,10 @@ impl<O: IsA<Group>> GroupExt for O {
b"start\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `start` getter")
.unwrap()
}
}

View file

@ -244,7 +244,9 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
b"audio-filter\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `audio-filter` getter")
}
}
@ -266,7 +268,9 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
b"audio-sink\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `audio-sink` getter")
}
}
@ -288,7 +292,9 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
b"timeline\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `timeline` getter")
}
}
@ -300,7 +306,9 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
b"video-filter\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `video-filter` getter")
}
}
@ -322,7 +330,9 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
b"video-sink\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `video-sink` getter")
}
}

View file

@ -435,7 +435,10 @@ impl<O: IsA<TimelineElement>> TimelineElementExt for O {
b"in-point\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `in-point` getter")
.unwrap()
}
}
@ -457,7 +460,10 @@ impl<O: IsA<TimelineElement>> TimelineElementExt for O {
b"serialize\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `serialize` getter")
.unwrap()
}
}

View file

@ -198,7 +198,10 @@ impl<O: IsA<Track>> GESTrackExt for O {
b"duration\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `duration` getter")
.unwrap()
}
}
@ -210,7 +213,9 @@ impl<O: IsA<Track>> GESTrackExt for O {
b"restriction-caps\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `restriction-caps` getter")
}
}
@ -222,7 +227,10 @@ impl<O: IsA<Track>> GESTrackExt for O {
b"track-type\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `track-type` getter")
.unwrap()
}
}

View file

@ -233,7 +233,10 @@ impl<O: IsA<TrackElement>> TrackElementExt for O {
b"active\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `active` getter")
.unwrap()
}
}

View file

@ -107,7 +107,10 @@ impl<O: IsA<UriClip>> UriClipExt for O {
b"is-image\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `is-image` getter")
.unwrap()
}
}
@ -119,7 +122,10 @@ impl<O: IsA<UriClip>> UriClipExt for O {
b"mute\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `mute` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -60,7 +60,9 @@ impl<O: IsA<GLBaseFilter>> GLBaseFilterExt for O {
b"context\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `context` getter")
}
}

View file

@ -65,7 +65,10 @@ impl GLOverlayCompositor {
b"yinvert\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `yinvert` getter")
.unwrap()
}
}

View file

@ -384,7 +384,10 @@ impl GLShader {
b"linked\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `linked` getter")
.unwrap()
}
}

View file

@ -99,7 +99,10 @@ impl GLViewConvert {
b"downmix-mode\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `downmix-mode` getter")
.unwrap()
}
}
@ -122,7 +125,10 @@ impl GLViewConvert {
b"input-flags-override\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `input-flags-override` getter")
.unwrap()
}
}
@ -148,7 +154,10 @@ impl GLViewConvert {
b"input-mode-override\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `input-mode-override` getter")
.unwrap()
}
}
@ -174,7 +183,10 @@ impl GLViewConvert {
b"output-flags-override\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `output-flags-override` getter")
.unwrap()
}
}
@ -200,7 +212,10 @@ impl GLViewConvert {
b"output-mode-override\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `output-mode-override` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -33,7 +33,9 @@ impl NetClientClock {
b"address\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `address` getter")
}
}
@ -55,7 +57,10 @@ impl NetClientClock {
b"base-time\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `base-time` getter")
.unwrap()
}
}
@ -67,7 +72,7 @@ impl NetClientClock {
b"bus\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value.get().expect("Return Value for property `bus` getter")
}
}
@ -89,7 +94,9 @@ impl NetClientClock {
b"internal-clock\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `internal-clock` getter")
}
}
@ -101,7 +108,10 @@ impl NetClientClock {
b"minimum-update-interval\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `minimum-update-interval` getter")
.unwrap()
}
}
@ -123,7 +133,10 @@ impl NetClientClock {
b"port\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `port` getter")
.unwrap()
}
}
@ -145,7 +158,10 @@ impl NetClientClock {
b"qos-dscp\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `qos-dscp` getter")
.unwrap()
}
}
@ -167,7 +183,10 @@ impl NetClientClock {
b"round-trip-limit\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `round-trip-limit` getter")
.unwrap()
}
}

View file

@ -33,7 +33,10 @@ impl NetTimeProvider {
b"active\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `active` getter")
.unwrap()
}
}
@ -55,7 +58,9 @@ impl NetTimeProvider {
b"address\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `address` getter")
}
}
@ -67,7 +72,9 @@ impl NetTimeProvider {
b"clock\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `clock` getter")
}
}
@ -79,7 +86,10 @@ impl NetTimeProvider {
b"port\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `port` getter")
.unwrap()
}
}
@ -91,7 +101,10 @@ impl NetTimeProvider {
b"qos-dscp\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `qos-dscp` getter")
.unwrap()
}
}

View file

@ -32,7 +32,10 @@ impl PtpClock {
b"domain\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `domain` getter")
.unwrap()
}
}
@ -44,7 +47,10 @@ impl PtpClock {
b"grandmaster-clock-id\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `grandmaster-clock-id` getter")
.unwrap()
}
}
@ -56,7 +62,9 @@ impl PtpClock {
b"internal-clock\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `internal-clock` getter")
}
}
@ -68,7 +76,10 @@ impl PtpClock {
b"master-clock-id\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `master-clock-id` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -94,7 +94,10 @@ impl Discoverer {
b"use-cache\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `use-cache` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -353,7 +353,9 @@ impl Player {
b"suburi\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `suburi` getter")
}
}
@ -376,7 +378,10 @@ impl Player {
b"video-multiview-flags\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `video-multiview-flags` getter")
.unwrap()
}
}
@ -403,7 +408,10 @@ impl Player {
b"video-multiview-mode\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `video-multiview-mode` getter")
.unwrap()
}
}

View file

@ -28,7 +28,9 @@ impl PlayerGMainContextSignalDispatcher {
b"application-context\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `application-context` getter")
}
}
}

View file

@ -81,7 +81,9 @@ impl PlayerVideoOverlayVideoRenderer {
b"video-sink\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `video-sink` getter")
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -406,7 +406,10 @@ impl<O: IsA<RTSPClient>> RTSPClientExt for O {
b"drop-backlog\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `drop-backlog` getter")
.unwrap()
}
}

View file

@ -799,7 +799,10 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
b"bind-mcast-address\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `bind-mcast-address` getter")
.unwrap()
}
}
@ -821,7 +824,10 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
b"eos-shutdown\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `eos-shutdown` getter")
.unwrap()
}
}
@ -833,7 +839,10 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
b"max-mcast-ttl\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `max-mcast-ttl` getter")
.unwrap()
}
}
@ -855,7 +864,10 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
b"reusable\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `reusable` getter")
.unwrap()
}
}
@ -867,7 +879,10 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
b"shared\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `shared` getter")
.unwrap()
}
}
@ -879,7 +894,10 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
b"stop-on-disconnect\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `stop-on-disconnect` getter")
.unwrap()
}
}

View file

@ -619,7 +619,10 @@ impl<O: IsA<RTSPMediaFactory>> RTSPMediaFactoryExt for O {
b"bind-mcast-address\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `bind-mcast-address` getter")
.unwrap()
}
}
@ -641,7 +644,10 @@ impl<O: IsA<RTSPMediaFactory>> RTSPMediaFactoryExt for O {
b"eos-shutdown\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `eos-shutdown` getter")
.unwrap()
}
}
@ -653,7 +659,10 @@ impl<O: IsA<RTSPMediaFactory>> RTSPMediaFactoryExt for O {
b"max-mcast-ttl\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `max-mcast-ttl` getter")
.unwrap()
}
}
@ -675,7 +684,10 @@ impl<O: IsA<RTSPMediaFactory>> RTSPMediaFactoryExt for O {
b"shared\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `shared` getter")
.unwrap()
}
}
@ -687,7 +699,10 @@ impl<O: IsA<RTSPMediaFactory>> RTSPMediaFactoryExt for O {
b"stop-on-disconnect\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `stop-on-disconnect` getter")
.unwrap()
}
}

View file

@ -89,7 +89,10 @@ impl<O: IsA<RTSPMediaFactoryURI>> RTSPMediaFactoryURIExt for O {
b"use-gstpay\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `use-gstpay` getter")
.unwrap()
}
}

View file

@ -251,7 +251,10 @@ impl<O: IsA<RTSPSession>> RTSPSessionExt for O {
b"timeout-always-visible\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `timeout-always-visible` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -160,7 +160,10 @@ impl<O: IsA<VideoEncoder>> VideoEncoderExt for O {
b"qos\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `qos` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)

View file

@ -53,7 +53,9 @@ impl WebRTCDTLSTransport {
b"certificate\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `certificate` getter")
}
}
@ -75,7 +77,10 @@ impl WebRTCDTLSTransport {
b"client\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `client` getter")
.unwrap()
}
}
@ -97,7 +102,9 @@ impl WebRTCDTLSTransport {
b"remote-certificate\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `remote-certificate` getter")
}
}
@ -109,7 +116,10 @@ impl WebRTCDTLSTransport {
b"rtcp\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `rtcp` getter")
.unwrap()
}
}
@ -121,7 +131,10 @@ impl WebRTCDTLSTransport {
b"session-id\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `session-id` getter")
.unwrap()
}
}
@ -134,7 +147,10 @@ impl WebRTCDTLSTransport {
b"state\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `state` getter")
.unwrap()
}
}
@ -146,7 +162,9 @@ impl WebRTCDTLSTransport {
b"transport\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `transport` getter")
}
}

View file

@ -71,7 +71,10 @@ impl WebRTCICETransport {
b"component\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `component` getter")
.unwrap()
}
}
@ -84,7 +87,10 @@ impl WebRTCICETransport {
b"gathering-state\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `gathering-state` getter")
.unwrap()
}
}
@ -97,7 +103,10 @@ impl WebRTCICETransport {
b"state\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `state` getter")
.unwrap()
}
}

View file

@ -28,7 +28,10 @@ impl WebRTCRTPTransceiver {
b"mlineindex\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `mlineindex` getter")
.unwrap()
}
}
@ -40,7 +43,9 @@ impl WebRTCRTPTransceiver {
b"receiver\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `receiver` getter")
}
}
@ -52,7 +57,9 @@ impl WebRTCRTPTransceiver {
b"sender\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `sender` getter")
}
}
}

View file

@ -260,7 +260,10 @@ impl<O: IsA<Bin>> GstBinExt for O {
b"async-handling\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `async-handling` getter")
.unwrap()
}
}
@ -282,7 +285,10 @@ impl<O: IsA<Bin>> GstBinExt for O {
b"message-forward\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `message-forward` getter")
.unwrap()
}
}

View file

@ -378,7 +378,10 @@ impl<O: IsA<Clock>> ClockExt for O {
b"window-size\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `window-size` getter")
.unwrap()
}
}
@ -400,7 +403,10 @@ impl<O: IsA<Clock>> ClockExt for O {
b"window-threshold\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `window-threshold` getter")
.unwrap()
}
}

View file

@ -123,7 +123,10 @@ impl<O: IsA<DeviceMonitor>> DeviceMonitorExt for O {
b"show-all\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `show-all` getter")
.unwrap()
}
}

View file

@ -533,7 +533,9 @@ impl<O: IsA<Pad>> PadExt for O {
b"caps\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `caps` getter")
}
}
@ -545,7 +547,9 @@ impl<O: IsA<Pad>> PadExt for O {
b"template\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `template` getter")
}
}

View file

@ -90,7 +90,10 @@ impl PadTemplate {
b"direction\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `direction` getter")
.unwrap()
}
}
@ -103,7 +106,10 @@ impl PadTemplate {
b"gtype\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `gtype` getter")
.unwrap()
}
}
@ -115,7 +121,9 @@ impl PadTemplate {
b"name-template\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `name-template` getter")
}
}
@ -127,7 +135,10 @@ impl PadTemplate {
b"presence\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `presence` getter")
.unwrap()
}
}

View file

@ -90,7 +90,9 @@ impl Stream {
b"caps\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `caps` getter")
}
}
@ -112,7 +114,10 @@ impl Stream {
b"stream-flags\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `stream-flags` getter")
.unwrap()
}
}
@ -134,7 +139,9 @@ impl Stream {
b"stream-id\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `stream-id` getter")
}
}
@ -146,7 +153,10 @@ impl Stream {
b"stream-type\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `stream-type` getter")
.unwrap()
}
}
@ -168,7 +178,9 @@ impl Stream {
b"tags\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `tags` getter")
}
}

View file

@ -59,7 +59,9 @@ impl StreamCollection {
b"upstream-id\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get()
value
.get()
.expect("Return Value for property `upstream-id` getter")
}
}

View file

@ -65,7 +65,10 @@ impl<O: IsA<SystemClock>> SystemClockExt for O {
b"clock-type\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value.get().unwrap()
value
.get()
.expect("Return Value for property `clock-type` getter")
.unwrap()
}
}

View file

@ -1,2 +1,2 @@
Generated by gir (https://github.com/gtk-rs/gir @ fb0b31c)
Generated by gir (https://github.com/gtk-rs/gir @ 11e59a0)
from gir-files (https://github.com/gtk-rs/gir-files @ ???)