gstreamer-rs/gstreamer-sdp/src/sdp_key.rs
Bilal Elmoussaoui 4ebec84f5e Adapt to no longer renamed ffi crates
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>
2024-06-02 11:20:55 +02:00

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()
}
}