You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Generates a reception [`Timestamp`] with id=0x01. /// This operation should be called if a timestamp is required for an incoming [`zenoh::Sample`](crate::Sample)/// that doesn't contain any timestamp.// tags{rust.new_reception_timestamp, api.timestamp.create.now}pubfnnew_reception_timestamp() -> Timestamp{use std::time::{SystemTime,UNIX_EPOCH};let now = SystemTime::now().duration_since(UNIX_EPOCH).unwrap();Timestamp::new(now.into(),TimestampId::try_from([1]).unwrap())}
The text was updated successfully, but these errors were encountered:
Describe the release item
Expose this function into zenoh-c
The text was updated successfully, but these errors were encountered: