/* Memory binding status. */ func (js *JobStatus) MemoryBinding() string { return private_gestatus.GetMbind(&js.js) }
/* Returns true in case the job has memory binding requested. */ func (js *JobStatus) HasMemoryBinding() bool { if private_gestatus.GetMbind(&js.js) == "no_bind" { return false } return true }