File: literal.go

package info (click to toggle)
golang-github-emersion-go-imap 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 840 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
package imap

import (
	"io"
)

// A literal, as defined in RFC 3501 section 4.3.
type Literal interface {
	io.Reader

	// Len returns the number of bytes of the literal.
	Len() int
}