123456789_123456789_123456789_123456789_123456789_

Class: Net::IMAP::MailboxList

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Struct
Instance Chain:
self, Struct
Inherits: Struct
  • Object
Defined in: lib/net/imap.rb

Overview

MailboxList represents contents of the LIST response.

mailbox_list    ::= "(" #("\Marked" / "\Noinferiors" /
                    "\Noselect" / "\Unmarked" / flag_extension) ")"
                    SPACE (<"> QUOTED_CHAR <"> / nil) SPACE mailbox

Fields:

attr

Returns the name attributes. Each name attribute is a symbol capitalized by String#capitalize, such as :Noselect (not :NoSelect).

delim

Returns the hierarchy delimiter.

name

Returns the mailbox name.

Instance Attribute Summary

  • #attr rw

    MailboxList represents contents of the LIST response.

  • #delim rw

    MailboxList represents contents of the LIST response.

  • #name rw

    MailboxList represents contents of the LIST response.

Instance Attribute Details

#attr (rw)

MailboxList represents contents of the LIST response.

mailbox_list    ::= "(" #("\Marked" / "\Noinferiors" /
                    "\Noselect" / "\Unmarked" / flag_extension) ")"
                    SPACE (<"> QUOTED_CHAR <"> / nil) SPACE mailbox

Fields:

attr

Returns the name attributes. Each name attribute is a symbol capitalized by String#capitalize, such as :Noselect (not :NoSelect).

delim

Returns the hierarchy delimiter.

name

Returns the mailbox name.

[ GitHub ]

  
# File 'lib/net/imap.rb', line 1822

MailboxList = Struct.new(:attr, :delim, :name)

#delim (rw)

MailboxList represents contents of the LIST response.

mailbox_list    ::= "(" #("\Marked" / "\Noinferiors" /
                    "\Noselect" / "\Unmarked" / flag_extension) ")"
                    SPACE (<"> QUOTED_CHAR <"> / nil) SPACE mailbox

Fields:

attr

Returns the name attributes. Each name attribute is a symbol capitalized by String#capitalize, such as :Noselect (not :NoSelect).

delim

Returns the hierarchy delimiter.

name

Returns the mailbox name.

[ GitHub ]

  
# File 'lib/net/imap.rb', line 1822

MailboxList = Struct.new(:attr, :delim, :name)

#name (rw)

MailboxList represents contents of the LIST response.

mailbox_list    ::= "(" #("\Marked" / "\Noinferiors" /
                    "\Noselect" / "\Unmarked" / flag_extension) ")"
                    SPACE (<"> QUOTED_CHAR <"> / nil) SPACE mailbox

Fields:

attr

Returns the name attributes. Each name attribute is a symbol capitalized by String#capitalize, such as :Noselect (not :NoSelect).

delim

Returns the hierarchy delimiter.

name

Returns the mailbox name.

[ GitHub ]

  
# File 'lib/net/imap.rb', line 1822

MailboxList = Struct.new(:attr, :delim, :name)