Struct tf_rosrust::TfListener [−][src]
pub struct TfListener { /* fields omitted */ }Expand description
This struct tries to be the same as the C++ version of TransformListener. Use this struct to lookup transforms.
Example usage:
fn main() { rosrust::init("listener"); let listener = TfListener::new(); let rate = rosrust::rate(1.0); while rosrust::is_ok() { let tf = listener.lookup_transform("camera", "base_link", ros::Time::now()); println!("{:?}", tf); rate.sleep(); } }
Do note that unlike the C++ variant of the TfListener, only one TfListener can be created at a time. Like its C++ counterpart,
it must be scoped to exist through the lifetime of the program. One way to do this is using an Arc or RwLock.
Implementations
pub fn lookup_transform(
&self,
from: &str,
to: &str,
time: Time
) -> Result<TransformStamped, TfError>
pub fn lookup_transform(
&self,
from: &str,
to: &str,
time: Time
) -> Result<TransformStamped, TfError>Looks up a transform within the tree at a given time.
pub fn lookup_transform_with_time_travel(
&self,
from: &str,
time1: Time,
to: &str,
time2: Time,
fixed_frame: &str
) -> Result<TransformStamped, TfError>
pub fn lookup_transform_with_time_travel(
&self,
from: &str,
time1: Time,
to: &str,
time2: Time,
fixed_frame: &str
) -> Result<TransformStamped, TfError>Looks up a transform within the tree at a given time.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TfListenerimpl Send for TfListenerimpl Sync for TfListenerimpl Unpin for TfListenerimpl UnwindSafe for TfListenerBlanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> boolChecks if self is actually part of its subset T (and can be converted to it).
pub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SSUse with care! Same as self.to_subset but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SPThe inclusion map: converts self to the equivalent element of its superset.
pub fn vzip(self) -> V