We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfff91e commit 580f19fCopy full SHA for 580f19f
vhost-user-backend/src/vring.rs
@@ -38,10 +38,10 @@ pub trait VringT<M: GuestAddressSpace>:
38
Self: Sized;
39
40
/// Get an immutable reference to the kick event fd.
41
- fn get_ref(&self) -> <Self as VringStateGuard<M>>::G;
+ fn get_ref(&self) -> <Self as VringStateGuard<'_, M>>::G;
42
43
/// Get a mutable reference to the kick event fd.
44
- fn get_mut(&self) -> <Self as VringStateMutGuard<M>>::G;
+ fn get_mut(&self) -> <Self as VringStateMutGuard<'_, M>>::G;
45
46
/// Add an used descriptor into the used queue.
47
fn add_used(&self, desc_index: u16, len: u32) -> Result<(), VirtQueError>;
0 commit comments