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
Response supports X-GM-Labels, that is the labeling system used by GMail.
Is it possible to expose the value in Fetch?
/// Extract the `X-GM-LABELS` of a `FETCH` response////// See [Access to Gmail labels: X-GM-LABELS](https://developers.google.com/gmail/imap/imap-extensions#access_to_labels_x-gm-labels)/// for details.pubfngmail_labels(&self) -> Option<&Vec<Cow<'_,str>>>{ifletResponse::Fetch(_, attrs) = self.response.parsed(){
attrs
.iter().filter_map(|av| match av {AttributeValue::GmailLabels(gl) => Some(gl),
_ => None,}).next()}else{unreachable!()}}
The text was updated successfully, but these errors were encountered:
Response
supports X-GM-Labels, that is the labeling system used by GMail.Is it possible to expose the value in
Fetch
?The text was updated successfully, but these errors were encountered: