blob: b320ec219820a6b62a83a6cd50c13abddccce6b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
pub async fn fetch(
&self,
sequence_set: SequenceSet,
attributes: MacroOrFetchAttributes,
uid: bool,
) -> Result<Response> {
Ok(vec![ImapRes::Status(
Status::bad(Some(self.tag.clone()), None, "Not implemented").map_err(Error::msg)?,
)])
}
|