mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-02-02 04:12:25 +00:00
4ebec84f5e
Allows us to set all the crates in the main workspace file, so changing their versions or branch is much simpler and reduce the amount of noise in the diff Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1450>
41 lines
993 B
Rust
41 lines
993 B
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use std::{ffi::CStr, fmt};
|
|
|
|
#[repr(transparent)]
|
|
#[doc(alias = "GstSDPKey")]
|
|
pub struct SDPKey(crate::ffi::GstSDPKey);
|
|
|
|
unsafe impl Send for SDPKey {}
|
|
unsafe impl Sync for SDPKey {}
|
|
|
|
impl SDPKey {
|
|
pub fn type_(&self) -> Option<&str> {
|
|
unsafe {
|
|
if self.0.type_.is_null() {
|
|
None
|
|
} else {
|
|
Some(CStr::from_ptr(self.0.type_).to_str().unwrap())
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn data(&self) -> Option<&str> {
|
|
unsafe {
|
|
if self.0.data.is_null() {
|
|
None
|
|
} else {
|
|
Some(CStr::from_ptr(self.0.data).to_str().unwrap())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for SDPKey {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
f.debug_struct("SDPKey")
|
|
.field("type", &self.type_())
|
|
.field("data", &self.data())
|
|
.finish()
|
|
}
|
|
}
|