Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.MailboxFlag) predicate.MailboxFlag
- func ID(id int) predicate.MailboxFlag
- func IDEQ(id int) predicate.MailboxFlag
- func IDGT(id int) predicate.MailboxFlag
- func IDGTE(id int) predicate.MailboxFlag
- func IDIn(ids ...int) predicate.MailboxFlag
- func IDLT(id int) predicate.MailboxFlag
- func IDLTE(id int) predicate.MailboxFlag
- func IDNEQ(id int) predicate.MailboxFlag
- func IDNotIn(ids ...int) predicate.MailboxFlag
- func Not(p predicate.MailboxFlag) predicate.MailboxFlag
- func Or(predicates ...predicate.MailboxFlag) predicate.MailboxFlag
- func ValidColumn(column string) bool
- func Value(v string) predicate.MailboxFlag
- func ValueContains(v string) predicate.MailboxFlag
- func ValueContainsFold(v string) predicate.MailboxFlag
- func ValueEQ(v string) predicate.MailboxFlag
- func ValueEqualFold(v string) predicate.MailboxFlag
- func ValueGT(v string) predicate.MailboxFlag
- func ValueGTE(v string) predicate.MailboxFlag
- func ValueHasPrefix(v string) predicate.MailboxFlag
- func ValueHasSuffix(v string) predicate.MailboxFlag
- func ValueIn(vs ...string) predicate.MailboxFlag
- func ValueLT(v string) predicate.MailboxFlag
- func ValueLTE(v string) predicate.MailboxFlag
- func ValueNEQ(v string) predicate.MailboxFlag
- func ValueNotIn(vs ...string) predicate.MailboxFlag
Constants ¶
const ( // Label holds the string label denoting the mailboxflag type in the database. Label = "mailbox_flag" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldValue holds the string denoting the value field in the database. FieldValue = "value" // Table holds the table name of the mailboxflag in the database. Table = "mailbox_flags" )
Variables ¶
var Columns = []string{ FieldID, FieldValue, }
Columns holds all SQL columns for mailboxflag fields.
var ForeignKeys = []string{
"mailbox_flags",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "mailbox_flags" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.MailboxFlag) predicate.MailboxFlag
And groups predicates with the AND operator between them.
func IDGTE ¶
func IDGTE(id int) predicate.MailboxFlag
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.MailboxFlag
IDIn applies the In predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.MailboxFlag
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.MailboxFlag
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.MailboxFlag
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.MailboxFlag) predicate.MailboxFlag
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.MailboxFlag) predicate.MailboxFlag
Or groups predicates with the OR operator between them.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func Value ¶
func Value(v string) predicate.MailboxFlag
Value applies equality check predicate on the "Value" field. It's identical to ValueEQ.
func ValueContains ¶
func ValueContains(v string) predicate.MailboxFlag
ValueContains applies the Contains predicate on the "Value" field.
func ValueContainsFold ¶
func ValueContainsFold(v string) predicate.MailboxFlag
ValueContainsFold applies the ContainsFold predicate on the "Value" field.
func ValueEQ ¶
func ValueEQ(v string) predicate.MailboxFlag
ValueEQ applies the EQ predicate on the "Value" field.
func ValueEqualFold ¶
func ValueEqualFold(v string) predicate.MailboxFlag
ValueEqualFold applies the EqualFold predicate on the "Value" field.
func ValueGT ¶
func ValueGT(v string) predicate.MailboxFlag
ValueGT applies the GT predicate on the "Value" field.
func ValueGTE ¶
func ValueGTE(v string) predicate.MailboxFlag
ValueGTE applies the GTE predicate on the "Value" field.
func ValueHasPrefix ¶
func ValueHasPrefix(v string) predicate.MailboxFlag
ValueHasPrefix applies the HasPrefix predicate on the "Value" field.
func ValueHasSuffix ¶
func ValueHasSuffix(v string) predicate.MailboxFlag
ValueHasSuffix applies the HasSuffix predicate on the "Value" field.
func ValueIn ¶
func ValueIn(vs ...string) predicate.MailboxFlag
ValueIn applies the In predicate on the "Value" field.
func ValueLT ¶
func ValueLT(v string) predicate.MailboxFlag
ValueLT applies the LT predicate on the "Value" field.
func ValueLTE ¶
func ValueLTE(v string) predicate.MailboxFlag
ValueLTE applies the LTE predicate on the "Value" field.
func ValueNEQ ¶
func ValueNEQ(v string) predicate.MailboxFlag
ValueNEQ applies the NEQ predicate on the "Value" field.
func ValueNotIn ¶
func ValueNotIn(vs ...string) predicate.MailboxFlag
ValueNotIn applies the NotIn predicate on the "Value" field.
Types ¶
This section is empty.