Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface interface { io.WriterTo // Transcode is an transcoding content from the specified encoding to UTF-8 Transcode(e encoding.Encoding) Interface // Transform is an transforming content using a custom function Transform(fn TransformFunc) Interface // String Return content as string String() (string, error) // Bytes Return content as []byte Bytes() ([]byte, error) // UnmarshalJSON Decoding content like JSON UnmarshalJSON(o interface{}) error // UnmarshalXML Decoding content like XML UnmarshalXML(o interface{}) error // UnTar Разархивация контента методом TAR UnTar() Interface // UnZip Разархивация контента методом ZIP (извлекается только первый файл) UnZip() Interface // UnGzip Разархивация контента методом GZIP UnGzip() Interface // UnFlate Разархивация контента методом FLATE UnFlate() Interface // BackToBegin Returns the content reading pointer to the beginning // This allows you to repeat the work with content BackToBegin() error }
Interface is an interface of package
func New ¶
func New(d data.ReadAtSeekerWriteToCloser) Interface
New creates a new object and return interface
Click to show internal directories.
Click to hide internal directories.