use crate::prelude::*;
use crate::Binding;
use crate::Object;
impl Binding {
#[doc(alias = "get_source")]
pub fn source(&self) -> Option<Object> {
self.property("source")
}
#[doc(alias = "get_target")]
pub fn target(&self) -> Option<Object> {
self.property("target")
}
}