pub struct ResponseBuilder<'a> { /* private fields */ }
Expand description
Implementations§
source§impl<'a> ResponseBuilder<'a>
impl<'a> ResponseBuilder<'a>
sourcepub fn next_signature(
&mut self,
) -> Option<(&str, &Signature, Option<&mut Unwinder<'a>>)>
pub fn next_signature( &mut self, ) -> Option<(&str, &Signature, Option<&mut Unwinder<'a>>)>
Use this in a while let Some((resource, signature)) = response_builder.next_signature()
loop to add all the returned values to Self::add_diff
.
If you don’t have a resource, just don’t call Self::add_diff
. Agde will then automatically
send a delete event then.