Remember getters and setters, concept always mentioned on learning OOP, the methods from classes that either return and modify an attribute of an object?
Accessor = getter but for model attribute
Mutator = setter but for model attribute
So in summary an accessor is a function to get a value from a model attribute with some modification, and another for setting with some modification. Pretty simple, but the docs really make it somewhat difficult to understand by the name at first sight.