pub struct ComputeHeadCursorResponse {
pub head_cursor: Option<Cursor>,
}Expand description
Response containing the head cursor for the requested topic and partition.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§head_cursor: Option<Cursor>The head cursor.
Trait Implementations§
Source§impl Clone for ComputeHeadCursorResponse
impl Clone for ComputeHeadCursorResponse
Source§fn clone(&self) -> ComputeHeadCursorResponse
fn clone(&self) -> ComputeHeadCursorResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ComputeHeadCursorResponse
impl Debug for ComputeHeadCursorResponse
Source§impl Default for ComputeHeadCursorResponse
impl Default for ComputeHeadCursorResponse
Source§fn default() -> ComputeHeadCursorResponse
fn default() -> ComputeHeadCursorResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComputeHeadCursorResponse
impl<'de> Deserialize<'de> for ComputeHeadCursorResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl ResponseResult for ComputeHeadCursorResponse
Auto Trait Implementations§
impl Freeze for ComputeHeadCursorResponse
impl RefUnwindSafe for ComputeHeadCursorResponse
impl Send for ComputeHeadCursorResponse
impl Sync for ComputeHeadCursorResponse
impl Unpin for ComputeHeadCursorResponse
impl UnwindSafe for ComputeHeadCursorResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more