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
This should return error value, as z_check is internal now:
/// Tries to construct ZShmMut slice from ZShm slice#[no_mangle]pubextern"C"fnz_shm_mut_try_from_immut(this:&mutMaybeUninit<z_owned_shm_mut_t>,that:&mutz_moved_shm_t,){let shm:Option<ZShmMut> = that
.take_rust_type().take().and_then(|val| val.try_into().ok());
this.as_rust_type_mut_uninit().write(shm);}
Is the order of parameters of this function right? It seems that list should be first
The logic of placing destination parameter in zenoh-c is this:
if function is constructor of something, the destination is on the first place
if function is a getter, which constructs something, the destination is after the source
Seems that this should be second case: it looks more like getter, so this should be the first
This functions should be corrected to use move semantic:
This should return error value, as z_check is internal now:
Is the order of parameters of this function right? It seems that
list
should be firstThe logic of placing destination parameter in zenoh-c is this:
Seems that this should be second case: it looks more like getter, so
this
should be the firstThe text was updated successfully, but these errors were encountered: